

jQuery(function($) {
	if ($('.feedreading_blogroll_bookmarklist').length > 0){
		$.getScript("http://www.google.com/jsapi?key=ABQIAAAAIs1XPbqOoMJqe4C2CobjeBQGQNu5CfHh2L8KevEmf5OdFdpUZBRlXtC7NuRF37z2o35FacZehJhu7g", function(){
			google.load("feeds", "1",{"callback" : initializeBR});
		});
	}
	
	//initializeBR();

			/**
			 * printf() for Javascript
			 */
			function sprintf() {
                if( sprintf.arguments.length < 2 ) {
                    return;
                }
                var data = sprintf.arguments[ 0 ];
                for( var k=1; k<sprintf.arguments.length; ++k ) {
                    switch( typeof( sprintf.arguments[ k ] ) ){
                        case 'string':
                            data = data.replace( /%s/, sprintf.arguments[ k ] );
                            break;
                        case 'number':
                            data = data.replace( /%d/, sprintf.arguments[ k ] );
                            break;
                        case 'boolean':
                            data = data.replace( /%b/, sprintf.arguments[ k ] ? 'true' : 'false' );
                            break;
                            default:
                           /// function | object | undefined
                        break;
                    }
                }
                return(data);
            }
            if( !String.sprintf ) {
            	String.sprintf = sprintf;
            }


            /**
             * generate text showing the age of the bookmark's latest post
             */
            function getAge(days, hours){
                if (days > 1) {
                    return String.sprintf("%d days ago", days);
                } else if (days==1){
                	return "yesterday ";
                } else if (days< 1 && hours > 1) {
                	return String.sprintf("%d hrs ago", hours);
                } else if (days< 1 && hours == 1) {
                	return "in the last hour";
                } else if (days < 1 && hours < 1) {
                	return "just recently";
                }
            }
            /* add age and other info to bookmark*/
            function addAge(feed, bookmark, anchor, divID, previewtoggle, last_posttitle){
                var $li =$(bookmark),
                 $a =$(anchor),
                 $toggle =$(previewtoggle),
                 $title =$(last_posttitle),
                 now = (new Date()).getTime(),
                 then = (new Date()).getTime(),
                 ageInDays,
                 ageInHours,
                 randomAge,
                 ageMsg=[],
                 $snippet,
                 entry;
                entry = feed.entries[0]
                /*,entry1= feed.entries[1] */;
                try {
                    then = new Date(entry.publishedDate).getTime();
                } catch (dateException) {
                    // do noting
                }
                
                ageInDays =  Math.floor((now-then)/(1000*60*60*24)),
                ageInHours = Math.floor((now-then)%(1000*60*60*24)/3600000);

                try {
                                         $entryTitle =$("<p></p>").html(entry.title);
                                        $a.attr({title: $entryTitle.html()});
                } catch (titleException) {
                    $a.attr({title: ""});
                }
				if (!isNaN(then)){
					// insert age into list-item to allow sorting by age of post
                    $li.attr({age:then});
				} else {
		            /* add "very old" age to bookmarks with no feed-url */
					randomAge = Math.floor(Math.random()*1000001);
					$li.attr({age:randomAge});
				}

                                			$title.html(entry.title);
			$title.attr( {
				href  : entry.link,
				title : $("<p></p>").html(entry.contentSnippet).html(),
				rel   : "external",
				rev   : "bookmark"
			});

			/*$title.parent().append($("<a></a>").attr({
					href : entry1.link,
					title: $("<p></p>").html(entry1.contentSnippet).html(),
					rel   : "external",
					rev   : "bookmark"
			}).html(entry1.title));*/
                                return false;
            }
            /* add "very old" age to bookmarks with no feed-url */
            function addZeroAge(zeroAgeBookmark){
                var $zali =$(zeroAgeBookmark),
                randomAge = Math.floor(Math.random()*10000001);
                if ($zali !== null ) {
                    $zali.attr({age:randomAge});
                }
                return false;
            }

            /* add jQuery-oberserver to enable mouse-clicks*/
            function addFeedControl(preview, feed, name){
                    var feedControl = new google.feeds.FeedControl();
                    feedControl.addFeed(feed, name);
                    feedControl.draw($(preview).get(0));
                    return false;
            }

			/*
			 *
			 */
            function feedreading_limit_display(){ 
            	var
                 liArray = $("#feedreading_blogroll_ > li"), liArraySingle_2 = $("#single-2_feedreading_blogroll_ > li") ;					for (var i=0; i < liArray.length; i++) { 
						if(i > 24){
	        				$(liArray[i]).css("display","none");
						}
					} 					for (var i=0; i < liArraySingle_2.length; i++) { 
						if(i > 24){
	        				$(liArraySingle_2[i]).css("display","none");
						}
					} 				return false;
        	}
        	
            /*
             * Sort the blogroll with tsort()
             */
            function feedreading_automatic_sort() { 					var $allCompleted=false, $hasCompleteAge=true, isComplete=false, $sortArray=$("#feedreading_blogroll_ >li") 
					,						$hasCompleteAgeSingle2=true, isCompleteSingle2=false, $liSortSingleArray2= $("#single-2_feedreading_blogroll_ > li") 
											;
	        		for (var i=0; i < $sortArray.length; i++) {
						var $age_ = $( $sortArray[i]).attr("age");
						if ($age_ === null || $age_ == "" || isNaN($age_)) {
							$hasCompleteAge = false;
						}
	        		}
	        		if($sortArray.length==0){
	        			$hasCompleteAge = true;
	        		}
					 
		        		for (var i=0; i < $liSortSingleArray2.length; i++) {
							var $age2 = $($liSortSingleArray2[i]).attr("age");
							if ($age2 === null || $age2 == "" || isNaN($age2)) {
								$hasCompleteAgeSingle2 = false;
							}
		        		}
						if ($hasCompleteAgeSingle2 && !isCompleteSingle2) {
							try{
							//$("#single-2_feedreading_blogroll_ > li").tsort({order:"desc",attr:"age"});
							$("#single-2_feedreading_blogroll_ > li").frbrsort(sortAlpha).appendTo("#single-2_feedreading_blogroll_");
							isCompleteSingle2=true;
							} catch (e){
							// do nothing
							}
						}
												if ($hasCompleteAge && !isComplete){
							try{
							//$("#feedreading_blogroll_ > li").tsort({order:"desc",attr:"age"});
							$("#feedreading_blogroll_ > li").frbrsort(sortAlpha).appendTo("#feedreading_blogroll_ ");							
							isComplete=true;
							} catch (e){
							// do nothing
							}
						}

						
					$allCompleted = $hasCompleteAge 
					 && 							isCompleteSingle2							;							
					if ($allCompleted) {
						clearInterval(myInterval);
													feedreading_limit_display();
																	}
									return false;
            }

	function feedreading_rolling(){
						var
							$blogroll_all= $('#feedreading_blogroll_'), $blogroll_all_size= $blogroll_all.find('li').size(), $blogroll_all_limit = ($blogroll_all_size>5)? (5): ($blogroll_all_size-1)
			 ,			$single_blogroll_2 = $('#single-2_feedreading_blogroll_'), $single_blogroll_2_size=$single_blogroll_2.find('li').size() , $single_blogroll_2_limit = ($single_blogroll_2_size>5)? (5): ($single_blogroll_2_size-1) 
						;
			
						$('#feedreading_blogroll_ > li').css("display","none");
			$blogroll_all.feedReadingBlogrollSpy($blogroll_all_limit,4000);
						
						if ($single_blogroll_2_size > 1) {
				$("#single-2_feedreading_blogroll_ > li").css("display","none");
				$single_blogroll_2.feedReadingBlogrollSpy($single_blogroll_2_limit,4000);
			}

					return false;
	}

            /*
             * add observer to blogroll()
             */
	function feedreading_category_observer() {
	    		$("ul.feedreading_blogroll_bookmarklist").bind("mouseenter",function(event){
			var $eventTarget =$(event.target);
			$eventTarget.parents(".feedreading_blogroll_bookmarklist").addClass("mouseover");
		});
		$("ul.feedreading_blogroll_bookmarklist").bind("mouseleave",function(event){
			var $eventTarget =$(event.target);
			$eventTarget.parents(".feedreading_blogroll_bookmarklist").removeClass("mouseover");
		});
		return false;
	}
					            /* call sort-function every half second */
		            var myInterval = window.setInterval(function (){feedreading_automatic_sort(); },1000);
			/* stop calling sort-function after n seconds */
			window.setTimeout(function (a,b){
				clearInterval(myInterval);
			}, 20000);
			
      function initializeBR() { 
			                      if($("#feedreading_bookmark_31").length > 0){
                          
						google.feeds.lookupFeed("http://theworldaccordingtoeggface.blogspot.com/", function() {
							var url31= this.url, feed31 = new google.feeds.Feed(this.url);
                            feed31.load(function(result_31){
                                if (!result_31.error) {
                                addAge(result_31.feed, "#feedreading_bookmark_31", "#feedreading_anchor_31", "#feedreading_info_31", "#feedreading_previewtoggle_31", "#frbl_last_posttitle_31");
                  			} else {
                      			addZeroAge("#feedreading_bookmark_31");
                  			}
                                });

						});}

                                                                if($("#feedreading_bookmark_30").length > 0){
                          
						google.feeds.lookupFeed("http://www.recoveringfatty.com/", function() {
							var url30= this.url, feed30 = new google.feeds.Feed(this.url);
                            feed30.load(function(result_30){
                                if (!result_30.error) {
                                addAge(result_30.feed, "#feedreading_bookmark_30", "#feedreading_anchor_30", "#feedreading_info_30", "#feedreading_previewtoggle_30", "#frbl_last_posttitle_30");
                  			} else {
                      			addZeroAge("#feedreading_bookmark_30");
                  			}
                                });

						});}

                                                                if($("#feedreading_bookmark_72").length > 0){
                          
						google.feeds.lookupFeed("http://myblog.jeweledwaters.com/", function() {
							var url72= this.url, feed72 = new google.feeds.Feed(this.url);
                            feed72.load(function(result_72){
                                if (!result_72.error) {
                                addAge(result_72.feed, "#feedreading_bookmark_72", "#feedreading_anchor_72", "#feedreading_info_72", "#feedreading_previewtoggle_72", "#frbl_last_posttitle_72");
                  			} else {
                      			addZeroAge("#feedreading_bookmark_72");
                  			}
                                });

						});}

                                                                if($("#feedreading_bookmark_121").length > 0){
                          
						google.feeds.lookupFeed("http://eatingwelllivingthin.wordpress.com/", function() {
							var url121= this.url, feed121 = new google.feeds.Feed(this.url);
                            feed121.load(function(result_121){
                                if (!result_121.error) {
                                addAge(result_121.feed, "#feedreading_bookmark_121", "#feedreading_anchor_121", "#feedreading_info_121", "#feedreading_previewtoggle_121", "#frbl_last_posttitle_121");
                  			} else {
                      			addZeroAge("#feedreading_bookmark_121");
                  			}
                                });

						});}

                                                                if($("#feedreading_bookmark_122").length > 0){
                          
						google.feeds.lookupFeed("http://pimpmyproteinshake.blogspot.com/", function() {
							var url122= this.url, feed122 = new google.feeds.Feed(this.url);
                            feed122.load(function(result_122){
                                if (!result_122.error) {
                                addAge(result_122.feed, "#feedreading_bookmark_122", "#feedreading_anchor_122", "#feedreading_info_122", "#feedreading_previewtoggle_122", "#frbl_last_posttitle_122");
                  			} else {
                      			addZeroAge("#feedreading_bookmark_122");
                  			}
                                });

						});}

                                                                if($("#feedreading_bookmark_115").length > 0){
                          
						google.feeds.lookupFeed("http://www.thegastricbypassvegetarian.blogspot.com/", function() {
							var url115= this.url, feed115 = new google.feeds.Feed(this.url);
                            feed115.load(function(result_115){
                                if (!result_115.error) {
                                addAge(result_115.feed, "#feedreading_bookmark_115", "#feedreading_anchor_115", "#feedreading_info_115", "#feedreading_previewtoggle_115", "#frbl_last_posttitle_115");
                  			} else {
                      			addZeroAge("#feedreading_bookmark_115");
                  			}
                                });

						});}

                                          
																															if($("#single-2_feedreading_bookmark_36").length > 0){
											google.feeds.lookupFeed("http://www.5daypouchtest.com/plan/theplan.html", function() {
											var url_single_236= this.url, feed_single_236 = new google.feeds.Feed(this.url);
											feed_single_236.load(function(result_single_236){
											if (!result_single_236.error) {
											addAge(result_single_236.feed, "#single-2_feedreading_bookmark_36", "#single-2_feedreading_anchor_36", "#single-2_feedreading_info_36", "#single-2_feedreading_previewtoggle_36", "#single-2_frbl_last_posttitle_36");
																					} else {
											addZeroAge("#single-2_feedreading_bookmark_36");
											}
										});
									});}
                                          											if($("#single-2_feedreading_bookmark_45").length > 0){
											google.feeds.lookupFeed("http://allrecipes.com/", function() {
											var url_single_245= this.url, feed_single_245 = new google.feeds.Feed(this.url);
											feed_single_245.load(function(result_single_245){
											if (!result_single_245.error) {
											addAge(result_single_245.feed, "#single-2_feedreading_bookmark_45", "#single-2_feedreading_anchor_45", "#single-2_feedreading_info_45", "#single-2_feedreading_previewtoggle_45", "#single-2_frbl_last_posttitle_45");
																					} else {
											addZeroAge("#single-2_feedreading_bookmark_45");
											}
										});
									});}
                                          											if($("#single-2_feedreading_bookmark_102").length > 0){
											google.feeds.lookupFeed("http://www.asmbs.org/Newsite07/resources/bgs_final.pdf", function() {
											var url_single_2102= this.url, feed_single_2102 = new google.feeds.Feed(this.url);
											feed_single_2102.load(function(result_single_2102){
											if (!result_single_2102.error) {
											addAge(result_single_2102.feed, "#single-2_feedreading_bookmark_102", "#single-2_feedreading_anchor_102", "#single-2_feedreading_info_102", "#single-2_feedreading_previewtoggle_102", "#single-2_frbl_last_posttitle_102");
																					} else {
											addZeroAge("#single-2_feedreading_bookmark_102");
											}
										});
									});}
                                          											if($("#single-2_feedreading_bookmark_104").length > 0){
											google.feeds.lookupFeed("http://www.bariatricadvantage.com/catalog", function() {
											var url_single_2104= this.url, feed_single_2104 = new google.feeds.Feed(this.url);
											feed_single_2104.load(function(result_single_2104){
											if (!result_single_2104.error) {
											addAge(result_single_2104.feed, "#single-2_feedreading_bookmark_104", "#single-2_feedreading_anchor_104", "#single-2_feedreading_info_104", "#single-2_feedreading_previewtoggle_104", "#single-2_frbl_last_posttitle_104");
																					} else {
											addZeroAge("#single-2_feedreading_bookmark_104");
											}
										});
									});}
                                          											if($("#single-2_feedreading_bookmark_77").length > 0){
											google.feeds.lookupFeed("http://www.bariatricchoice.com/", function() {
											var url_single_277= this.url, feed_single_277 = new google.feeds.Feed(this.url);
											feed_single_277.load(function(result_single_277){
											if (!result_single_277.error) {
											addAge(result_single_277.feed, "#single-2_feedreading_bookmark_77", "#single-2_feedreading_anchor_77", "#single-2_feedreading_info_77", "#single-2_feedreading_previewtoggle_77", "#single-2_frbl_last_posttitle_77");
																					} else {
											addZeroAge("#single-2_feedreading_bookmark_77");
											}
										});
									});}
                                          											if($("#single-2_feedreading_bookmark_38").length > 0){
											google.feeds.lookupFeed("http://www.bariatriceating.com", function() {
											var url_single_238= this.url, feed_single_238 = new google.feeds.Feed(this.url);
											feed_single_238.load(function(result_single_238){
											if (!result_single_238.error) {
											addAge(result_single_238.feed, "#single-2_feedreading_bookmark_38", "#single-2_feedreading_anchor_38", "#single-2_feedreading_info_38", "#single-2_feedreading_previewtoggle_38", "#single-2_frbl_last_posttitle_38");
																					} else {
											addZeroAge("#single-2_feedreading_bookmark_38");
											}
										});
									});}
                                          											if($("#single-2_feedreading_bookmark_63").length > 0){
											google.feeds.lookupFeed("http://www.bariatricshop.com/", function() {
											var url_single_263= this.url, feed_single_263 = new google.feeds.Feed(this.url);
											feed_single_263.load(function(result_single_263){
											if (!result_single_263.error) {
											addAge(result_single_263.feed, "#single-2_feedreading_bookmark_63", "#single-2_feedreading_anchor_63", "#single-2_feedreading_info_63", "#single-2_feedreading_previewtoggle_63", "#single-2_frbl_last_posttitle_63");
																					} else {
											addZeroAge("#single-2_feedreading_bookmark_63");
											}
										});
									});}
                                          											if($("#single-2_feedreading_bookmark_81").length > 0){
											google.feeds.lookupFeed("http://bariatrictv.com/", function() {
											var url_single_281= this.url, feed_single_281 = new google.feeds.Feed(this.url);
											feed_single_281.load(function(result_single_281){
											if (!result_single_281.error) {
											addAge(result_single_281.feed, "#single-2_feedreading_bookmark_81", "#single-2_feedreading_anchor_81", "#single-2_feedreading_info_81", "#single-2_feedreading_previewtoggle_81", "#single-2_frbl_last_posttitle_81");
																					} else {
											addZeroAge("#single-2_feedreading_bookmark_81");
											}
										});
									});}
                                          											if($("#single-2_feedreading_bookmark_62").length > 0){
											google.feeds.lookupFeed("http://www.wlslifestyles.com/wls-resources/bmi-calculator.php", function() {
											var url_single_262= this.url, feed_single_262 = new google.feeds.Feed(this.url);
											feed_single_262.load(function(result_single_262){
											if (!result_single_262.error) {
											addAge(result_single_262.feed, "#single-2_feedreading_bookmark_62", "#single-2_feedreading_anchor_62", "#single-2_feedreading_info_62", "#single-2_feedreading_previewtoggle_62", "#single-2_frbl_last_posttitle_62");
																					} else {
											addZeroAge("#single-2_feedreading_bookmark_62");
											}
										});
									});}
                                          											if($("#single-2_feedreading_bookmark_110").length > 0){
											google.feeds.lookupFeed("http://www.bodybuilding.com", function() {
											var url_single_2110= this.url, feed_single_2110 = new google.feeds.Feed(this.url);
											feed_single_2110.load(function(result_single_2110){
											if (!result_single_2110.error) {
											addAge(result_single_2110.feed, "#single-2_feedreading_bookmark_110", "#single-2_feedreading_anchor_110", "#single-2_feedreading_info_110", "#single-2_feedreading_previewtoggle_110", "#single-2_frbl_last_posttitle_110");
																					} else {
											addZeroAge("#single-2_feedreading_bookmark_110");
											}
										});
									});}
                                          											if($("#single-2_feedreading_bookmark_118").length > 0){
											google.feeds.lookupFeed("http://caloriecount.about.com/cc/recipe_analysis.php", function() {
											var url_single_2118= this.url, feed_single_2118 = new google.feeds.Feed(this.url);
											feed_single_2118.load(function(result_single_2118){
											if (!result_single_2118.error) {
											addAge(result_single_2118.feed, "#single-2_feedreading_bookmark_118", "#single-2_feedreading_anchor_118", "#single-2_feedreading_info_118", "#single-2_feedreading_previewtoggle_118", "#single-2_frbl_last_posttitle_118");
																					} else {
											addZeroAge("#single-2_feedreading_bookmark_118");
											}
										});
									});}
                                          											if($("#single-2_feedreading_bookmark_67").length > 0){
											google.feeds.lookupFeed("http://www.celebratevitamins.com/", function() {
											var url_single_267= this.url, feed_single_267 = new google.feeds.Feed(this.url);
											feed_single_267.load(function(result_single_267){
											if (!result_single_267.error) {
											addAge(result_single_267.feed, "#single-2_feedreading_bookmark_67", "#single-2_feedreading_anchor_67", "#single-2_feedreading_info_67", "#single-2_feedreading_previewtoggle_67", "#single-2_frbl_last_posttitle_67");
																					} else {
											addZeroAge("#single-2_feedreading_bookmark_67");
											}
										});
									});}
                                          											if($("#single-2_feedreading_bookmark_103").length > 0){
											google.feeds.lookupFeed("http://www.celebratevitamins.com", function() {
											var url_single_2103= this.url, feed_single_2103 = new google.feeds.Feed(this.url);
											feed_single_2103.load(function(result_single_2103){
											if (!result_single_2103.error) {
											addAge(result_single_2103.feed, "#single-2_feedreading_bookmark_103", "#single-2_feedreading_anchor_103", "#single-2_feedreading_info_103", "#single-2_feedreading_previewtoggle_103", "#single-2_frbl_last_posttitle_103");
																					} else {
											addZeroAge("#single-2_feedreading_bookmark_103");
											}
										});
									});}
                                          											if($("#single-2_feedreading_bookmark_74").length > 0){
											google.feeds.lookupFeed("http://whatscookingamerica.net/Q-A/equiv.htm", function() {
											var url_single_274= this.url, feed_single_274 = new google.feeds.Feed(this.url);
											feed_single_274.load(function(result_single_274){
											if (!result_single_274.error) {
											addAge(result_single_274.feed, "#single-2_feedreading_bookmark_74", "#single-2_feedreading_anchor_74", "#single-2_feedreading_info_74", "#single-2_feedreading_previewtoggle_74", "#single-2_frbl_last_posttitle_74");
																					} else {
											addZeroAge("#single-2_feedreading_bookmark_74");
											}
										});
									});}
                                          											if($("#single-2_feedreading_bookmark_114").length > 0){
											google.feeds.lookupFeed("http://www.bsciresourcecenter.com/proddetail.php?prod=A4", function() {
											var url_single_2114= this.url, feed_single_2114 = new google.feeds.Feed(this.url);
											feed_single_2114.load(function(result_single_2114){
											if (!result_single_2114.error) {
											addAge(result_single_2114.feed, "#single-2_feedreading_bookmark_114", "#single-2_feedreading_anchor_114", "#single-2_feedreading_info_114", "#single-2_feedreading_previewtoggle_114", "#single-2_frbl_last_posttitle_114");
																					} else {
											addZeroAge("#single-2_feedreading_bookmark_114");
											}
										});
									});}
                                          											if($("#single-2_feedreading_bookmark_56").length > 0){
											google.feeds.lookupFeed("http://www.myweightisover.com/PostOpBariatricPatient/postop.aspx", function() {
											var url_single_256= this.url, feed_single_256 = new google.feeds.Feed(this.url);
											feed_single_256.load(function(result_single_256){
											if (!result_single_256.error) {
											addAge(result_single_256.feed, "#single-2_feedreading_bookmark_56", "#single-2_feedreading_anchor_56", "#single-2_feedreading_info_56", "#single-2_feedreading_previewtoggle_56", "#single-2_frbl_last_posttitle_56");
																					} else {
											addZeroAge("#single-2_feedreading_bookmark_56");
											}
										});
									});}
                                          											if($("#single-2_feedreading_bookmark_41").length > 0){
											google.feeds.lookupFeed("http://www.dailystrength.org/", function() {
											var url_single_241= this.url, feed_single_241 = new google.feeds.Feed(this.url);
											feed_single_241.load(function(result_single_241){
											if (!result_single_241.error) {
											addAge(result_single_241.feed, "#single-2_feedreading_bookmark_41", "#single-2_feedreading_anchor_41", "#single-2_feedreading_info_41", "#single-2_feedreading_previewtoggle_41", "#single-2_frbl_last_posttitle_41");
																					} else {
											addZeroAge("#single-2_feedreading_bookmark_41");
											}
										});
									});}
                                          											if($("#single-2_feedreading_bookmark_44").length > 0){
											google.feeds.lookupFeed("http://danispies.com/", function() {
											var url_single_244= this.url, feed_single_244 = new google.feeds.Feed(this.url);
											feed_single_244.load(function(result_single_244){
											if (!result_single_244.error) {
											addAge(result_single_244.feed, "#single-2_feedreading_bookmark_44", "#single-2_feedreading_anchor_44", "#single-2_feedreading_info_44", "#single-2_feedreading_previewtoggle_44", "#single-2_frbl_last_posttitle_44");
																					} else {
											addZeroAge("#single-2_feedreading_bookmark_44");
											}
										});
									});}
                                          											if($("#single-2_feedreading_bookmark_69").length > 0){
											google.feeds.lookupFeed("http://www.davincigourmet.com/products/sugar_free_flavored_syrups/", function() {
											var url_single_269= this.url, feed_single_269 = new google.feeds.Feed(this.url);
											feed_single_269.load(function(result_single_269){
											if (!result_single_269.error) {
											addAge(result_single_269.feed, "#single-2_feedreading_bookmark_69", "#single-2_feedreading_anchor_69", "#single-2_feedreading_info_69", "#single-2_feedreading_previewtoggle_69", "#single-2_frbl_last_posttitle_69");
																					} else {
											addZeroAge("#single-2_feedreading_bookmark_69");
											}
										});
									});}
                                          											if($("#single-2_feedreading_bookmark_43").length > 0){
											google.feeds.lookupFeed("http://www.dietfacts.com/", function() {
											var url_single_243= this.url, feed_single_243 = new google.feeds.Feed(this.url);
											feed_single_243.load(function(result_single_243){
											if (!result_single_243.error) {
											addAge(result_single_243.feed, "#single-2_feedreading_bookmark_43", "#single-2_feedreading_anchor_43", "#single-2_feedreading_info_43", "#single-2_feedreading_previewtoggle_43", "#single-2_frbl_last_posttitle_43");
																					} else {
											addZeroAge("#single-2_feedreading_bookmark_43");
											}
										});
									});}
                                          											if($("#single-2_feedreading_bookmark_51").length > 0){
											google.feeds.lookupFeed("http://www.parknicollet.com/clinic/Doctors/Find_a_Provider/provider_detail/provider_detail.cfm?ID=1226", function() {
											var url_single_251= this.url, feed_single_251 = new google.feeds.Feed(this.url);
											feed_single_251.load(function(result_single_251){
											if (!result_single_251.error) {
											addAge(result_single_251.feed, "#single-2_feedreading_bookmark_51", "#single-2_feedreading_anchor_51", "#single-2_feedreading_info_51", "#single-2_feedreading_previewtoggle_51", "#single-2_frbl_last_posttitle_51");
																					} else {
											addZeroAge("#single-2_feedreading_bookmark_51");
											}
										});
									});}
                                          											if($("#single-2_feedreading_bookmark_52").length > 0){
											google.feeds.lookupFeed("http://www.obesityhelp.com/morbidobesity/bariatric+surgeon+profile+Charles+A+Svendsen+khl.html", function() {
											var url_single_252= this.url, feed_single_252 = new google.feeds.Feed(this.url);
											feed_single_252.load(function(result_single_252){
											if (!result_single_252.error) {
											addAge(result_single_252.feed, "#single-2_feedreading_bookmark_52", "#single-2_feedreading_anchor_52", "#single-2_feedreading_info_52", "#single-2_feedreading_previewtoggle_52", "#single-2_frbl_last_posttitle_52");
																					} else {
											addZeroAge("#single-2_feedreading_bookmark_52");
											}
										});
									});}
                                          											if($("#single-2_feedreading_bookmark_121").length > 0){
											google.feeds.lookupFeed("http://eatingwelllivingthin.wordpress.com/", function() {
											var url_single_2121= this.url, feed_single_2121 = new google.feeds.Feed(this.url);
											feed_single_2121.load(function(result_single_2121){
											if (!result_single_2121.error) {
											addAge(result_single_2121.feed, "#single-2_feedreading_bookmark_121", "#single-2_feedreading_anchor_121", "#single-2_feedreading_info_121", "#single-2_feedreading_previewtoggle_121", "#single-2_frbl_last_posttitle_121");
																					} else {
											addZeroAge("#single-2_feedreading_bookmark_121");
											}
										});
									});}
                                          											if($("#single-2_feedreading_bookmark_83").length > 0){
											google.feeds.lookupFeed("http://www.fit-fresh.com/", function() {
											var url_single_283= this.url, feed_single_283 = new google.feeds.Feed(this.url);
											feed_single_283.load(function(result_single_283){
											if (!result_single_283.error) {
											addAge(result_single_283.feed, "#single-2_feedreading_bookmark_83", "#single-2_feedreading_anchor_83", "#single-2_feedreading_info_83", "#single-2_feedreading_previewtoggle_83", "#single-2_frbl_last_posttitle_83");
																					} else {
											addZeroAge("#single-2_feedreading_bookmark_83");
											}
										});
									});}
                                          											if($("#single-2_feedreading_bookmark_71").length > 0){
											google.feeds.lookupFeed("http://fitday.com/", function() {
											var url_single_271= this.url, feed_single_271 = new google.feeds.Feed(this.url);
											feed_single_271.load(function(result_single_271){
											if (!result_single_271.error) {
											addAge(result_single_271.feed, "#single-2_feedreading_bookmark_71", "#single-2_feedreading_anchor_71", "#single-2_feedreading_info_71", "#single-2_feedreading_previewtoggle_71", "#single-2_frbl_last_posttitle_71");
																					} else {
											addZeroAge("#single-2_feedreading_bookmark_71");
											}
										});
									});}
                                          											if($("#single-2_feedreading_bookmark_93").length > 0){
											google.feeds.lookupFeed("http://www.foodnetwork.com/topics/low-carbohydrate/index.html", function() {
											var url_single_293= this.url, feed_single_293 = new google.feeds.Feed(this.url);
											feed_single_293.load(function(result_single_293){
											if (!result_single_293.error) {
											addAge(result_single_293.feed, "#single-2_feedreading_bookmark_93", "#single-2_feedreading_anchor_93", "#single-2_feedreading_info_93", "#single-2_feedreading_previewtoggle_93", "#single-2_frbl_last_posttitle_93");
																					} else {
											addZeroAge("#single-2_feedreading_bookmark_93");
											}
										});
									});}
                                          											if($("#single-2_feedreading_bookmark_91").length > 0){
											google.feeds.lookupFeed("http://freshandnaturalfoods.com/locations", function() {
											var url_single_291= this.url, feed_single_291 = new google.feeds.Feed(this.url);
											feed_single_291.load(function(result_single_291){
											if (!result_single_291.error) {
											addAge(result_single_291.feed, "#single-2_feedreading_bookmark_91", "#single-2_feedreading_anchor_91", "#single-2_feedreading_info_91", "#single-2_feedreading_previewtoggle_91", "#single-2_frbl_last_posttitle_91");
																					} else {
											addZeroAge("#single-2_feedreading_bookmark_91");
											}
										});
									});}
                                          											if($("#single-2_feedreading_bookmark_105").length > 0){
											google.feeds.lookupFeed("http://www.gastricbypasssupplements.com/", function() {
											var url_single_2105= this.url, feed_single_2105 = new google.feeds.Feed(this.url);
											feed_single_2105.load(function(result_single_2105){
											if (!result_single_2105.error) {
											addAge(result_single_2105.feed, "#single-2_feedreading_bookmark_105", "#single-2_feedreading_anchor_105", "#single-2_feedreading_info_105", "#single-2_feedreading_previewtoggle_105", "#single-2_frbl_last_posttitle_105");
																					} else {
											addZeroAge("#single-2_feedreading_bookmark_105");
											}
										});
									});}
                                          											if($("#single-2_feedreading_bookmark_106").length > 0){
											google.feeds.lookupFeed("http://www.gastricbypasssupplements.com", function() {
											var url_single_2106= this.url, feed_single_2106 = new google.feeds.Feed(this.url);
											feed_single_2106.load(function(result_single_2106){
											if (!result_single_2106.error) {
											addAge(result_single_2106.feed, "#single-2_feedreading_bookmark_106", "#single-2_feedreading_anchor_106", "#single-2_feedreading_info_106", "#single-2_feedreading_previewtoggle_106", "#single-2_frbl_last_posttitle_106");
																					} else {
											addZeroAge("#single-2_feedreading_bookmark_106");
											}
										});
									});}
                                          											if($("#single-2_feedreading_bookmark_115").length > 0){
											google.feeds.lookupFeed("http://www.thegastricbypassvegetarian.blogspot.com/", function() {
											var url_single_2115= this.url, feed_single_2115 = new google.feeds.Feed(this.url);
											feed_single_2115.load(function(result_single_2115){
											if (!result_single_2115.error) {
											addAge(result_single_2115.feed, "#single-2_feedreading_bookmark_115", "#single-2_feedreading_anchor_115", "#single-2_feedreading_info_115", "#single-2_feedreading_previewtoggle_115", "#single-2_frbl_last_posttitle_115");
																					} else {
											addZeroAge("#single-2_feedreading_bookmark_115");
											}
										});
									});}
                                          											if($("#single-2_feedreading_bookmark_112").length > 0){
											google.feeds.lookupFeed("http://www.gnc.com/home/index.jsp", function() {
											var url_single_2112= this.url, feed_single_2112 = new google.feeds.Feed(this.url);
											feed_single_2112.load(function(result_single_2112){
											if (!result_single_2112.error) {
											addAge(result_single_2112.feed, "#single-2_feedreading_bookmark_112", "#single-2_feedreading_anchor_112", "#single-2_feedreading_info_112", "#single-2_feedreading_previewtoggle_112", "#single-2_frbl_last_posttitle_112");
																					} else {
											addZeroAge("#single-2_feedreading_bookmark_112");
											}
										});
									});}
                                          											if($("#single-2_feedreading_bookmark_42").length > 0){
											google.feeds.lookupFeed("http://www.goodcarbs.org/", function() {
											var url_single_242= this.url, feed_single_242 = new google.feeds.Feed(this.url);
											feed_single_242.load(function(result_single_242){
											if (!result_single_242.error) {
											addAge(result_single_242.feed, "#single-2_feedreading_bookmark_42", "#single-2_feedreading_anchor_42", "#single-2_feedreading_info_42", "#single-2_feedreading_previewtoggle_42", "#single-2_frbl_last_posttitle_42");
																					} else {
											addZeroAge("#single-2_feedreading_bookmark_42");
											}
										});
									});}
                                          											if($("#single-2_feedreading_bookmark_73").length > 0){
											google.feeds.lookupFeed("http://www.gourmetsleuth.com/gram_calc.htm", function() {
											var url_single_273= this.url, feed_single_273 = new google.feeds.Feed(this.url);
											feed_single_273.load(function(result_single_273){
											if (!result_single_273.error) {
											addAge(result_single_273.feed, "#single-2_feedreading_bookmark_73", "#single-2_feedreading_anchor_73", "#single-2_feedreading_info_73", "#single-2_feedreading_previewtoggle_73", "#single-2_frbl_last_posttitle_73");
																					} else {
											addZeroAge("#single-2_feedreading_bookmark_73");
											}
										});
									});}
                                          											if($("#single-2_feedreading_bookmark_97").length > 0){
											google.feeds.lookupFeed("http://healthydara.blogspot.com/", function() {
											var url_single_297= this.url, feed_single_297 = new google.feeds.Feed(this.url);
											feed_single_297.load(function(result_single_297){
											if (!result_single_297.error) {
											addAge(result_single_297.feed, "#single-2_feedreading_bookmark_97", "#single-2_feedreading_anchor_97", "#single-2_feedreading_info_97", "#single-2_feedreading_previewtoggle_97", "#single-2_frbl_last_posttitle_97");
																					} else {
											addZeroAge("#single-2_feedreading_bookmark_97");
											}
										});
									});}
                                          											if($("#single-2_feedreading_bookmark_72").length > 0){
											google.feeds.lookupFeed("http://myblog.jeweledwaters.com/", function() {
											var url_single_272= this.url, feed_single_272 = new google.feeds.Feed(this.url);
											feed_single_272.load(function(result_single_272){
											if (!result_single_272.error) {
											addAge(result_single_272.feed, "#single-2_feedreading_bookmark_72", "#single-2_feedreading_anchor_72", "#single-2_feedreading_info_72", "#single-2_feedreading_previewtoggle_72", "#single-2_frbl_last_posttitle_72");
																					} else {
											addZeroAge("#single-2_feedreading_bookmark_72");
											}
										});
									});}
                                          											if($("#single-2_feedreading_bookmark_107").length > 0){
											google.feeds.lookupFeed("http://www.lowcarbshop.com/", function() {
											var url_single_2107= this.url, feed_single_2107 = new google.feeds.Feed(this.url);
											feed_single_2107.load(function(result_single_2107){
											if (!result_single_2107.error) {
											addAge(result_single_2107.feed, "#single-2_feedreading_bookmark_107", "#single-2_feedreading_anchor_107", "#single-2_feedreading_info_107", "#single-2_feedreading_previewtoggle_107", "#single-2_frbl_last_posttitle_107");
																					} else {
											addZeroAge("#single-2_feedreading_bookmark_107");
											}
										});
									});}
                                          											if($("#single-2_feedreading_bookmark_119").length > 0){
											google.feeds.lookupFeed("http://caloriecount.about.com/cc/recipe_analysis.php", function() {
											var url_single_2119= this.url, feed_single_2119 = new google.feeds.Feed(this.url);
											feed_single_2119.load(function(result_single_2119){
											if (!result_single_2119.error) {
											addAge(result_single_2119.feed, "#single-2_feedreading_bookmark_119", "#single-2_feedreading_anchor_119", "#single-2_feedreading_info_119", "#single-2_feedreading_previewtoggle_119", "#single-2_frbl_last_posttitle_119");
																					} else {
											addZeroAge("#single-2_feedreading_bookmark_119");
											}
										});
									});}
                                          											if($("#single-2_feedreading_bookmark_54").length > 0){
											google.feeds.lookupFeed("http://www.mayoclinic.org/bariatric-surgery/", function() {
											var url_single_254= this.url, feed_single_254 = new google.feeds.Feed(this.url);
											feed_single_254.load(function(result_single_254){
											if (!result_single_254.error) {
											addAge(result_single_254.feed, "#single-2_feedreading_bookmark_54", "#single-2_feedreading_anchor_54", "#single-2_feedreading_info_54", "#single-2_feedreading_previewtoggle_54", "#single-2_frbl_last_posttitle_54");
																					} else {
											addZeroAge("#single-2_feedreading_bookmark_54");
											}
										});
									});}
                                          											if($("#single-2_feedreading_bookmark_89").length > 0){
											google.feeds.lookupFeed("http://www.midtownglobalmarket.org/?q=special-events", function() {
											var url_single_289= this.url, feed_single_289 = new google.feeds.Feed(this.url);
											feed_single_289.load(function(result_single_289){
											if (!result_single_289.error) {
											addAge(result_single_289.feed, "#single-2_feedreading_bookmark_89", "#single-2_feedreading_anchor_89", "#single-2_feedreading_info_89", "#single-2_feedreading_previewtoggle_89", "#single-2_frbl_last_posttitle_89");
																					} else {
											addZeroAge("#single-2_feedreading_bookmark_89");
											}
										});
									});}
                                          											if($("#single-2_feedreading_bookmark_46").length > 0){
											google.feeds.lookupFeed("http://www.mybariatric.net/pages/recipes.php", function() {
											var url_single_246= this.url, feed_single_246 = new google.feeds.Feed(this.url);
											feed_single_246.load(function(result_single_246){
											if (!result_single_246.error) {
											addAge(result_single_246.feed, "#single-2_feedreading_bookmark_46", "#single-2_feedreading_anchor_46", "#single-2_feedreading_info_46", "#single-2_feedreading_previewtoggle_46", "#single-2_frbl_last_posttitle_46");
																					} else {
											addZeroAge("#single-2_feedreading_bookmark_46");
											}
										});
									});}
                                          											if($("#single-2_feedreading_bookmark_66").length > 0){
											google.feeds.lookupFeed("http://www.nashuanutrition.com", function() {
											var url_single_266= this.url, feed_single_266 = new google.feeds.Feed(this.url);
											feed_single_266.load(function(result_single_266){
											if (!result_single_266.error) {
											addAge(result_single_266.feed, "#single-2_feedreading_bookmark_66", "#single-2_feedreading_anchor_66", "#single-2_feedreading_info_66", "#single-2_feedreading_previewtoggle_66", "#single-2_frbl_last_posttitle_66");
																					} else {
											addZeroAge("#single-2_feedreading_bookmark_66");
											}
										});
									});}
                                          											if($("#single-2_feedreading_bookmark_109").length > 0){
											google.feeds.lookupFeed("http://www.netrition.com/", function() {
											var url_single_2109= this.url, feed_single_2109 = new google.feeds.Feed(this.url);
											feed_single_2109.load(function(result_single_2109){
											if (!result_single_2109.error) {
											addAge(result_single_2109.feed, "#single-2_feedreading_bookmark_109", "#single-2_feedreading_anchor_109", "#single-2_feedreading_info_109", "#single-2_feedreading_previewtoggle_109", "#single-2_frbl_last_posttitle_109");
																					} else {
											addZeroAge("#single-2_feedreading_bookmark_109");
											}
										});
									});}
                                          											if($("#single-2_feedreading_bookmark_37").length > 0){
											google.feeds.lookupFeed("http://www.obesityhelp.com", function() {
											var url_single_237= this.url, feed_single_237 = new google.feeds.Feed(this.url);
											feed_single_237.load(function(result_single_237){
											if (!result_single_237.error) {
											addAge(result_single_237.feed, "#single-2_feedreading_bookmark_37", "#single-2_feedreading_anchor_37", "#single-2_feedreading_info_37", "#single-2_feedreading_previewtoggle_37", "#single-2_frbl_last_posttitle_37");
																					} else {
											addZeroAge("#single-2_feedreading_bookmark_37");
											}
										});
									});}
                                          											if($("#single-2_feedreading_bookmark_78").length > 0){
											google.feeds.lookupFeed("http://www.obesityhelp.com/forums/MN/", function() {
											var url_single_278= this.url, feed_single_278 = new google.feeds.Feed(this.url);
											feed_single_278.load(function(result_single_278){
											if (!result_single_278.error) {
											addAge(result_single_278.feed, "#single-2_feedreading_bookmark_78", "#single-2_feedreading_anchor_78", "#single-2_feedreading_info_78", "#single-2_feedreading_previewtoggle_78", "#single-2_frbl_last_posttitle_78");
																					} else {
											addZeroAge("#single-2_feedreading_bookmark_78");
											}
										});
									});}
                                          											if($("#single-2_feedreading_bookmark_53").length > 0){
											google.feeds.lookupFeed("http://www.parknicollet.com/bariatrics/patientStories/index.cfm", function() {
											var url_single_253= this.url, feed_single_253 = new google.feeds.Feed(this.url);
											feed_single_253.load(function(result_single_253){
											if (!result_single_253.error) {
											addAge(result_single_253.feed, "#single-2_feedreading_bookmark_53", "#single-2_feedreading_anchor_53", "#single-2_feedreading_info_53", "#single-2_feedreading_previewtoggle_53", "#single-2_frbl_last_posttitle_53");
																					} else {
											addZeroAge("#single-2_feedreading_bookmark_53");
											}
										});
									});}
                                          											if($("#single-2_feedreading_bookmark_50").length > 0){
											google.feeds.lookupFeed("http://www.parknicollet.com/bariatrics/", function() {
											var url_single_250= this.url, feed_single_250 = new google.feeds.Feed(this.url);
											feed_single_250.load(function(result_single_250){
											if (!result_single_250.error) {
											addAge(result_single_250.feed, "#single-2_feedreading_bookmark_50", "#single-2_feedreading_anchor_50", "#single-2_feedreading_info_50", "#single-2_feedreading_previewtoggle_50", "#single-2_frbl_last_posttitle_50");
																					} else {
											addZeroAge("#single-2_feedreading_bookmark_50");
											}
										});
									});}
                                          											if($("#single-2_feedreading_bookmark_80").length > 0){
											google.feeds.lookupFeed("http://www.bellplantation.com/mm5/merchant.mvc?Screen=PLST&amp;Store_Code=BP", function() {
											var url_single_280= this.url, feed_single_280 = new google.feeds.Feed(this.url);
											feed_single_280.load(function(result_single_280){
											if (!result_single_280.error) {
											addAge(result_single_280.feed, "#single-2_feedreading_bookmark_80", "#single-2_feedreading_anchor_80", "#single-2_feedreading_info_80", "#single-2_feedreading_previewtoggle_80", "#single-2_frbl_last_posttitle_80");
																					} else {
											addZeroAge("#single-2_feedreading_bookmark_80");
											}
										});
									});}
                                          											if($("#single-2_feedreading_bookmark_64").length > 0){
											google.feeds.lookupFeed("http://www.pharmics.com/ferretts-ips.htm", function() {
											var url_single_264= this.url, feed_single_264 = new google.feeds.Feed(this.url);
											feed_single_264.load(function(result_single_264){
											if (!result_single_264.error) {
											addAge(result_single_264.feed, "#single-2_feedreading_bookmark_64", "#single-2_feedreading_anchor_64", "#single-2_feedreading_info_64", "#single-2_feedreading_previewtoggle_64", "#single-2_frbl_last_posttitle_64");
																					} else {
											addZeroAge("#single-2_feedreading_bookmark_64");
											}
										});
									});}
                                          											if($("#single-2_feedreading_bookmark_65").length > 0){
											google.feeds.lookupFeed("http://www.bobspicklepop.com/index.html", function() {
											var url_single_265= this.url, feed_single_265 = new google.feeds.Feed(this.url);
											feed_single_265.load(function(result_single_265){
											if (!result_single_265.error) {
											addAge(result_single_265.feed, "#single-2_feedreading_bookmark_65", "#single-2_feedreading_anchor_65", "#single-2_feedreading_info_65", "#single-2_feedreading_previewtoggle_65", "#single-2_frbl_last_posttitle_65");
																					} else {
											addZeroAge("#single-2_feedreading_bookmark_65");
											}
										});
									});}
                                          											if($("#single-2_feedreading_bookmark_122").length > 0){
											google.feeds.lookupFeed("http://pimpmyproteinshake.blogspot.com/", function() {
											var url_single_2122= this.url, feed_single_2122 = new google.feeds.Feed(this.url);
											feed_single_2122.load(function(result_single_2122){
											if (!result_single_2122.error) {
											addAge(result_single_2122.feed, "#single-2_feedreading_bookmark_122", "#single-2_feedreading_anchor_122", "#single-2_feedreading_info_122", "#single-2_feedreading_previewtoggle_122", "#single-2_frbl_last_posttitle_122");
																					} else {
											addZeroAge("#single-2_feedreading_bookmark_122");
											}
										});
									});}
                                          											if($("#single-2_feedreading_bookmark_116").length > 0){
											google.feeds.lookupFeed("http://pouchfriendly.com/", function() {
											var url_single_2116= this.url, feed_single_2116 = new google.feeds.Feed(this.url);
											feed_single_2116.load(function(result_single_2116){
											if (!result_single_2116.error) {
											addAge(result_single_2116.feed, "#single-2_feedreading_bookmark_116", "#single-2_feedreading_anchor_116", "#single-2_feedreading_info_116", "#single-2_feedreading_previewtoggle_116", "#single-2_frbl_last_posttitle_116");
																					} else {
											addZeroAge("#single-2_feedreading_bookmark_116");
											}
										});
									});}
                                          											if($("#single-2_feedreading_bookmark_57").length > 0){
											google.feeds.lookupFeed("http://www.myweightisover.com/pdfs/PersonalWeightLog.pdf", function() {
											var url_single_257= this.url, feed_single_257 = new google.feeds.Feed(this.url);
											feed_single_257.load(function(result_single_257){
											if (!result_single_257.error) {
											addAge(result_single_257.feed, "#single-2_feedreading_bookmark_57", "#single-2_feedreading_anchor_57", "#single-2_feedreading_info_57", "#single-2_feedreading_previewtoggle_57", "#single-2_frbl_last_posttitle_57");
																					} else {
											addZeroAge("#single-2_feedreading_bookmark_57");
											}
										});
									});}
                                          											if($("#single-2_feedreading_bookmark_96").length > 0){
											google.feeds.lookupFeed("http://www.healthcalculators.org/calculators/protein.asp", function() {
											var url_single_296= this.url, feed_single_296 = new google.feeds.Feed(this.url);
											feed_single_296.load(function(result_single_296){
											if (!result_single_296.error) {
											addAge(result_single_296.feed, "#single-2_feedreading_bookmark_96", "#single-2_feedreading_anchor_96", "#single-2_feedreading_info_96", "#single-2_feedreading_previewtoggle_96", "#single-2_frbl_last_posttitle_96");
																					} else {
											addZeroAge("#single-2_feedreading_bookmark_96");
											}
										});
									});}
                                          											if($("#single-2_feedreading_bookmark_95").length > 0){
											google.feeds.lookupFeed("http://www.mckinley.uiuc.edu/Handouts/nutrition_labels/nutrition_labels.html", function() {
											var url_single_295= this.url, feed_single_295 = new google.feeds.Feed(this.url);
											feed_single_295.load(function(result_single_295){
											if (!result_single_295.error) {
											addAge(result_single_295.feed, "#single-2_feedreading_bookmark_95", "#single-2_feedreading_anchor_95", "#single-2_feedreading_info_95", "#single-2_feedreading_previewtoggle_95", "#single-2_frbl_last_posttitle_95");
																					} else {
											addZeroAge("#single-2_feedreading_bookmark_95");
											}
										});
									});}
                                          											if($("#single-2_feedreading_bookmark_98").length > 0){
											google.feeds.lookupFeed("http://www.celticmoon.com/forum/viewforum.php?f=10", function() {
											var url_single_298= this.url, feed_single_298 = new google.feeds.Feed(this.url);
											feed_single_298.load(function(result_single_298){
											if (!result_single_298.error) {
											addAge(result_single_298.feed, "#single-2_feedreading_bookmark_98", "#single-2_feedreading_anchor_98", "#single-2_feedreading_info_98", "#single-2_feedreading_previewtoggle_98", "#single-2_frbl_last_posttitle_98");
																					} else {
											addZeroAge("#single-2_feedreading_bookmark_98");
											}
										});
									});}
                                          											if($("#single-2_feedreading_bookmark_40").length > 0){
											google.feeds.lookupFeed("http://www.recipezaar.com/", function() {
											var url_single_240= this.url, feed_single_240 = new google.feeds.Feed(this.url);
											feed_single_240.load(function(result_single_240){
											if (!result_single_240.error) {
											addAge(result_single_240.feed, "#single-2_feedreading_bookmark_40", "#single-2_feedreading_anchor_40", "#single-2_feedreading_info_40", "#single-2_feedreading_previewtoggle_40", "#single-2_frbl_last_posttitle_40");
																					} else {
											addZeroAge("#single-2_feedreading_bookmark_40");
											}
										});
									});}
                                          											if($("#single-2_feedreading_bookmark_30").length > 0){
											google.feeds.lookupFeed("http://www.recoveringfatty.com/", function() {
											var url_single_230= this.url, feed_single_230 = new google.feeds.Feed(this.url);
											feed_single_230.load(function(result_single_230){
											if (!result_single_230.error) {
											addAge(result_single_230.feed, "#single-2_feedreading_bookmark_30", "#single-2_feedreading_anchor_30", "#single-2_feedreading_info_30", "#single-2_feedreading_previewtoggle_30", "#single-2_frbl_last_posttitle_30");
																					} else {
											addZeroAge("#single-2_feedreading_bookmark_30");
											}
										});
									});}
                                          											if($("#single-2_feedreading_bookmark_88").length > 0){
											google.feeds.lookupFeed("http://www.dietfacts.com/fastfood.asp", function() {
											var url_single_288= this.url, feed_single_288 = new google.feeds.Feed(this.url);
											feed_single_288.load(function(result_single_288){
											if (!result_single_288.error) {
											addAge(result_single_288.feed, "#single-2_feedreading_bookmark_88", "#single-2_feedreading_anchor_88", "#single-2_feedreading_info_88", "#single-2_feedreading_previewtoggle_88", "#single-2_frbl_last_posttitle_88");
																					} else {
											addZeroAge("#single-2_feedreading_bookmark_88");
											}
										});
									});}
                                          											if($("#single-2_feedreading_bookmark_58").length > 0){
											google.feeds.lookupFeed("http://www.myweightisover.com/DuringTheProcessofConsultations/shoppinglist.aspx#stage1", function() {
											var url_single_258= this.url, feed_single_258 = new google.feeds.Feed(this.url);
											feed_single_258.load(function(result_single_258){
											if (!result_single_258.error) {
											addAge(result_single_258.feed, "#single-2_feedreading_bookmark_58", "#single-2_feedreading_anchor_58", "#single-2_feedreading_info_58", "#single-2_feedreading_previewtoggle_58", "#single-2_frbl_last_posttitle_58");
																					} else {
											addZeroAge("#single-2_feedreading_bookmark_58");
											}
										});
									});}
                                          											if($("#single-2_feedreading_bookmark_99").length > 0){
											google.feeds.lookupFeed("http://pouchiepoo.blogspot.com", function() {
											var url_single_299= this.url, feed_single_299 = new google.feeds.Feed(this.url);
											feed_single_299.load(function(result_single_299){
											if (!result_single_299.error) {
											addAge(result_single_299.feed, "#single-2_feedreading_bookmark_99", "#single-2_feedreading_anchor_99", "#single-2_feedreading_info_99", "#single-2_feedreading_previewtoggle_99", "#single-2_frbl_last_posttitle_99");
																					} else {
											addZeroAge("#single-2_feedreading_bookmark_99");
											}
										});
									});}
                                          											if($("#single-2_feedreading_bookmark_55").length > 0){
											google.feeds.lookupFeed("http://www.myweightisover.com/PostOpBariatricPatient/postop.aspx", function() {
											var url_single_255= this.url, feed_single_255 = new google.feeds.Feed(this.url);
											feed_single_255.load(function(result_single_255){
											if (!result_single_255.error) {
											addAge(result_single_255.feed, "#single-2_feedreading_bookmark_55", "#single-2_feedreading_anchor_55", "#single-2_feedreading_info_55", "#single-2_feedreading_previewtoggle_55", "#single-2_frbl_last_posttitle_55");
																					} else {
											addZeroAge("#single-2_feedreading_bookmark_55");
											}
										});
									});}
                                          											if($("#single-2_feedreading_bookmark_59").length > 0){
											google.feeds.lookupFeed("http://www.myweightisover.com/BariatricSurgeryRightForYou/surgerysuccess.aspx", function() {
											var url_single_259= this.url, feed_single_259 = new google.feeds.Feed(this.url);
											feed_single_259.load(function(result_single_259){
											if (!result_single_259.error) {
											addAge(result_single_259.feed, "#single-2_feedreading_bookmark_59", "#single-2_feedreading_anchor_59", "#single-2_feedreading_info_59", "#single-2_feedreading_previewtoggle_59", "#single-2_frbl_last_posttitle_59");
																					} else {
											addZeroAge("#single-2_feedreading_bookmark_59");
											}
										});
									});}
                                          											if($("#single-2_feedreading_bookmark_94").length > 0){
											google.feeds.lookupFeed("http://www.lapsf.com/weight-loss-surgeries.html", function() {
											var url_single_294= this.url, feed_single_294 = new google.feeds.Feed(this.url);
											feed_single_294.load(function(result_single_294){
											if (!result_single_294.error) {
											addAge(result_single_294.feed, "#single-2_feedreading_bookmark_94", "#single-2_feedreading_anchor_94", "#single-2_feedreading_info_94", "#single-2_feedreading_previewtoggle_94", "#single-2_frbl_last_posttitle_94");
																					} else {
											addZeroAge("#single-2_feedreading_bookmark_94");
											}
										});
									});}
                                          											if($("#single-2_feedreading_bookmark_60").length > 0){
											google.feeds.lookupFeed("http://www.myweightisover.com/PostOpBariatricPatient/UrgentNormalCommonSymptoms.aspx", function() {
											var url_single_260= this.url, feed_single_260 = new google.feeds.Feed(this.url);
											feed_single_260.load(function(result_single_260){
											if (!result_single_260.error) {
											addAge(result_single_260.feed, "#single-2_feedreading_bookmark_60", "#single-2_feedreading_anchor_60", "#single-2_feedreading_info_60", "#single-2_feedreading_previewtoggle_60", "#single-2_frbl_last_posttitle_60");
																					} else {
											addZeroAge("#single-2_feedreading_bookmark_60");
											}
										});
									});}
                                          											if($("#single-2_feedreading_bookmark_87").length > 0){
											google.feeds.lookupFeed("http://www.whfoods.org/foodstoc.php", function() {
											var url_single_287= this.url, feed_single_287 = new google.feeds.Feed(this.url);
											feed_single_287.load(function(result_single_287){
											if (!result_single_287.error) {
											addAge(result_single_287.feed, "#single-2_feedreading_bookmark_87", "#single-2_feedreading_anchor_87", "#single-2_feedreading_info_87", "#single-2_feedreading_previewtoggle_87", "#single-2_frbl_last_posttitle_87");
																					} else {
											addZeroAge("#single-2_feedreading_bookmark_87");
											}
										});
									});}
                                          											if($("#single-2_feedreading_bookmark_70").length > 0){
											google.feeds.lookupFeed("http://www.livestrong.com/thedailyplate", function() {
											var url_single_270= this.url, feed_single_270 = new google.feeds.Feed(this.url);
											feed_single_270.load(function(result_single_270){
											if (!result_single_270.error) {
											addAge(result_single_270.feed, "#single-2_feedreading_bookmark_70", "#single-2_feedreading_anchor_70", "#single-2_feedreading_info_70", "#single-2_feedreading_previewtoggle_70", "#single-2_frbl_last_posttitle_70");
																					} else {
											addZeroAge("#single-2_feedreading_bookmark_70");
											}
										});
									});}
                                          											if($("#single-2_feedreading_bookmark_31").length > 0){
											google.feeds.lookupFeed("http://theworldaccordingtoeggface.blogspot.com/", function() {
											var url_single_231= this.url, feed_single_231 = new google.feeds.Feed(this.url);
											feed_single_231.load(function(result_single_231){
											if (!result_single_231.error) {
											addAge(result_single_231.feed, "#single-2_feedreading_bookmark_31", "#single-2_feedreading_anchor_31", "#single-2_feedreading_info_31", "#single-2_feedreading_previewtoggle_31", "#single-2_frbl_last_posttitle_31");
																					} else {
											addZeroAge("#single-2_feedreading_bookmark_31");
											}
										});
									});}
                                          											if($("#single-2_feedreading_bookmark_68").length > 0){
											google.feeds.lookupFeed("http://www.bevtechonline.com/index.cfm?fuseaction=product.display&amp;Product_ID=4", function() {
											var url_single_268= this.url, feed_single_268 = new google.feeds.Feed(this.url);
											feed_single_268.load(function(result_single_268){
											if (!result_single_268.error) {
											addAge(result_single_268.feed, "#single-2_feedreading_bookmark_68", "#single-2_feedreading_anchor_68", "#single-2_feedreading_info_68", "#single-2_feedreading_previewtoggle_68", "#single-2_frbl_last_posttitle_68");
																					} else {
											addZeroAge("#single-2_feedreading_bookmark_68");
											}
										});
									});}
                                          											if($("#single-2_feedreading_bookmark_92").length > 0){
											google.feeds.lookupFeed("http://traderjoes.com/index.html", function() {
											var url_single_292= this.url, feed_single_292 = new google.feeds.Feed(this.url);
											feed_single_292.load(function(result_single_292){
											if (!result_single_292.error) {
											addAge(result_single_292.feed, "#single-2_feedreading_bookmark_92", "#single-2_feedreading_anchor_92", "#single-2_feedreading_info_92", "#single-2_feedreading_previewtoggle_92", "#single-2_frbl_last_posttitle_92");
																					} else {
											addZeroAge("#single-2_feedreading_bookmark_92");
											}
										});
									});}
                                          											if($("#single-2_feedreading_bookmark_82").length > 0){
											google.feeds.lookupFeed("http://www.upmykilt.net/", function() {
											var url_single_282= this.url, feed_single_282 = new google.feeds.Feed(this.url);
											feed_single_282.load(function(result_single_282){
											if (!result_single_282.error) {
											addAge(result_single_282.feed, "#single-2_feedreading_bookmark_82", "#single-2_feedreading_anchor_82", "#single-2_feedreading_info_82", "#single-2_feedreading_previewtoggle_82", "#single-2_frbl_last_posttitle_82");
																					} else {
											addZeroAge("#single-2_feedreading_bookmark_82");
											}
										});
									});}
                                          											if($("#single-2_feedreading_bookmark_76").length > 0){
											google.feeds.lookupFeed("http://www.vitalady.com", function() {
											var url_single_276= this.url, feed_single_276 = new google.feeds.Feed(this.url);
											feed_single_276.load(function(result_single_276){
											if (!result_single_276.error) {
											addAge(result_single_276.feed, "#single-2_feedreading_bookmark_76", "#single-2_feedreading_anchor_76", "#single-2_feedreading_info_76", "#single-2_feedreading_previewtoggle_76", "#single-2_frbl_last_posttitle_76");
																					} else {
											addZeroAge("#single-2_feedreading_bookmark_76");
											}
										});
									});}
                                          											if($("#single-2_feedreading_bookmark_113").length > 0){
											google.feeds.lookupFeed("http://www.vitaminshoppe.com/store/en/vitamins_minerals/index.jsp", function() {
											var url_single_2113= this.url, feed_single_2113 = new google.feeds.Feed(this.url);
											feed_single_2113.load(function(result_single_2113){
											if (!result_single_2113.error) {
											addAge(result_single_2113.feed, "#single-2_feedreading_bookmark_113", "#single-2_feedreading_anchor_113", "#single-2_feedreading_info_113", "#single-2_feedreading_previewtoggle_113", "#single-2_frbl_last_posttitle_113");
																					} else {
											addZeroAge("#single-2_feedreading_bookmark_113");
											}
										});
									});}
                                          											if($("#single-2_feedreading_bookmark_47").length > 0){
											google.feeds.lookupFeed("http://www.asmbsfoundation.org/events/walkcookbook.php", function() {
											var url_single_247= this.url, feed_single_247 = new google.feeds.Feed(this.url);
											feed_single_247.load(function(result_single_247){
											if (!result_single_247.error) {
											addAge(result_single_247.feed, "#single-2_feedreading_bookmark_47", "#single-2_feedreading_anchor_47", "#single-2_feedreading_info_47", "#single-2_feedreading_previewtoggle_47", "#single-2_frbl_last_posttitle_47");
																					} else {
											addZeroAge("#single-2_feedreading_bookmark_47");
											}
										});
									});}
                                          											if($("#single-2_feedreading_bookmark_86").length > 0){
											google.feeds.lookupFeed("http://www.weightlosssurgerycoach.com/index.shtml", function() {
											var url_single_286= this.url, feed_single_286 = new google.feeds.Feed(this.url);
											feed_single_286.load(function(result_single_286){
											if (!result_single_286.error) {
											addAge(result_single_286.feed, "#single-2_feedreading_bookmark_86", "#single-2_feedreading_anchor_86", "#single-2_feedreading_info_86", "#single-2_feedreading_previewtoggle_86", "#single-2_frbl_last_posttitle_86");
																					} else {
											addZeroAge("#single-2_feedreading_bookmark_86");
											}
										});
									});}
                                          											if($("#single-2_feedreading_bookmark_120").length > 0){
											google.feeds.lookupFeed("http://www.wheycrisps.com/index.php?option=com_content&amp;view=article&amp;id=66&amp;Itemid=27", function() {
											var url_single_2120= this.url, feed_single_2120 = new google.feeds.Feed(this.url);
											feed_single_2120.load(function(result_single_2120){
											if (!result_single_2120.error) {
											addAge(result_single_2120.feed, "#single-2_feedreading_bookmark_120", "#single-2_feedreading_anchor_120", "#single-2_feedreading_info_120", "#single-2_feedreading_previewtoggle_120", "#single-2_frbl_last_posttitle_120");
																					} else {
											addZeroAge("#single-2_feedreading_bookmark_120");
											}
										});
									});}
                                          											if($("#single-2_feedreading_bookmark_90").length > 0){
											google.feeds.lookupFeed("http://www.wholefoodsmarket.com/", function() {
											var url_single_290= this.url, feed_single_290 = new google.feeds.Feed(this.url);
											feed_single_290.load(function(result_single_290){
											if (!result_single_290.error) {
											addAge(result_single_290.feed, "#single-2_feedreading_bookmark_90", "#single-2_feedreading_anchor_90", "#single-2_feedreading_info_90", "#single-2_feedreading_previewtoggle_90", "#single-2_frbl_last_posttitle_90");
																					} else {
											addZeroAge("#single-2_feedreading_bookmark_90");
											}
										});
									});}
                                          											if($("#single-2_feedreading_bookmark_111").length > 0){
											google.feeds.lookupFeed("http://www.wlshelp.com/", function() {
											var url_single_2111= this.url, feed_single_2111 = new google.feeds.Feed(this.url);
											feed_single_2111.load(function(result_single_2111){
											if (!result_single_2111.error) {
											addAge(result_single_2111.feed, "#single-2_feedreading_bookmark_111", "#single-2_feedreading_anchor_111", "#single-2_feedreading_info_111", "#single-2_feedreading_previewtoggle_111", "#single-2_frbl_last_posttitle_111");
																					} else {
											addZeroAge("#single-2_feedreading_bookmark_111");
											}
										});
									});}
                                          											if($("#single-2_feedreading_bookmark_61").length > 0){
											google.feeds.lookupFeed("http://www.wlslifestyles.com", function() {
											var url_single_261= this.url, feed_single_261 = new google.feeds.Feed(this.url);
											feed_single_261.load(function(result_single_261){
											if (!result_single_261.error) {
											addAge(result_single_261.feed, "#single-2_feedreading_bookmark_61", "#single-2_feedreading_anchor_61", "#single-2_feedreading_info_61", "#single-2_feedreading_previewtoggle_61", "#single-2_frbl_last_posttitle_61");
																					} else {
											addZeroAge("#single-2_feedreading_bookmark_61");
											}
										});
									});}
                                          											if($("#single-2_feedreading_bookmark_117").length > 0){
											google.feeds.lookupFeed("http://pouchfriendly.com/", function() {
											var url_single_2117= this.url, feed_single_2117 = new google.feeds.Feed(this.url);
											feed_single_2117.load(function(result_single_2117){
											if (!result_single_2117.error) {
											addAge(result_single_2117.feed, "#single-2_feedreading_bookmark_117", "#single-2_feedreading_anchor_117", "#single-2_feedreading_info_117", "#single-2_feedreading_previewtoggle_117", "#single-2_frbl_last_posttitle_117");
																					} else {
											addZeroAge("#single-2_feedreading_bookmark_117");
											}
										});
									});}
                                          																											feedreading_category_observer();
				return false;
                }


      $.fn.feedReadingBlogrollSpy = function (limit, interval) {
    	    limit = limit || 4;
    	    interval = interval || 4000;

    	    return this.each(function () {
    	        // 1. setup
    	            // capture a cache of all the list items
    	            // chomp the list down to limit li elements
    	        var $list = $(this),
    	            items = [], // uninitialised
    	            currentItem = limit,
    	            total = 0, // initialise later on
    	            height = $list.find('li:first').height();

    	        // capture the cache
    	        $list.find('li').each(function () {
    	            //items.push('<li>' + $(this).html() + '</li>');
    	            items.push($(this));
    	        });
    	        /*for (var i=0; i < li_items.length; i++){
    	            //items.push('<li>' + $(this).html() + '</li>');
    	            items.push($(this));
    	        } */

    	        total = items.length;

    	        $list.wrap('<div class="spyWrapper" />').parent().css({ height : height * (limit + 2) });

    	        $list.find('li').filter(':gt(' + (limit - 1) + ')').remove();

    	        // 2. effect
    	        function spy() {
			if(!$list.hasClass("mouseover")){
			    // insert a new item with opacity and height of zero
			    var $insert = $(items[currentItem]).css({
				height : 0,
				opacity : 0,
				display : 'none'
			    }).prependTo($list);

			    // fade the LAST item out
			    $list.find('li:last').animate({ opacity : 0}, 1000, function () {
				// increase the height of the NEW first item
				$insert.animate({ height : height }, 1000).animate({ opacity : 1 }, 1000);

				// AND at the same time - decrease the height of the LAST item
				// $(this).animate({ height : 0 }, 1000, function () {
				    // finally fade the first item in (and we can remove the last)
				    $(this).remove();
				// });
			    });

			    currentItem++;
			    if (currentItem >= total) {
				currentItem = 0;
			    }
			}
			setTimeout(spy, interval);
    	        }

    	        spy();
    	    });
    	};
    	$.fn.frbrsort = function() {
    		return this.pushStack( [].sort.apply(this, arguments), []);
    	};

    	function sortAlpha(a, b) {
    		return parseInt($(a).attr("age")) < parseInt($(b).attr("age")) ? 1 : -1;
    	};
});
            
                    