

jQuery(function($) {
	if ($('.feedreading_blogroll_bookmarklist').length > 0){
		$.getScript("http://www.google.com/jsapi?key=ABQIAAAAtyOU6NTV4XbVYtP0W65zfRScYbbkrQYpzIgfcEak0uzUorc-YBQvU-IXNe7ZucHKRdOGbuuLsV24TQ", 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});
				}

                                if (!(isNaN(ageInDays) || isNaN(ageInHours))){
                    ageMsg.push(getAge(ageInDays, ageInHours));
					           
                                        $toggle.html(ageMsg.join('')).attr({feedurl:feed.link});
                }
                                                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 > -1){
	        				$(liArray[i]).css("display","none");
						}
					} 					for (var i=0; i < liArraySingle_2.length; i++) { 
						if(i > -1){
	        				$(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);
																	}
									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_32").length > 0){
                          
						google.feeds.lookupFeed("http://2centsworthdownunder.blogspot.com/", function() {
							var url32= this.url, feed32 = new google.feeds.Feed(this.url);
                            feed32.load(function(result_32){
                                if (!result_32.error) {
                                addAge(result_32.feed, "#feedreading_bookmark_32", "#feedreading_anchor_32", "#feedreading_info_32", "#feedreading_previewtoggle_32", "#frbl_last_posttitle_32");
                  			} else {
                      			addZeroAge("#feedreading_bookmark_32");
                  			}
                                });

						});}

                                                                if($("#feedreading_bookmark_55").length > 0){
                          
						google.feeds.lookupFeed("http://dailyafirmation.livejournal.com/", function() {
							var url55= this.url, feed55 = new google.feeds.Feed(this.url);
                            feed55.load(function(result_55){
                                if (!result_55.error) {
                                addAge(result_55.feed, "#feedreading_bookmark_55", "#feedreading_anchor_55", "#feedreading_info_55", "#feedreading_previewtoggle_55", "#frbl_last_posttitle_55");
                  			} else {
                      			addZeroAge("#feedreading_bookmark_55");
                  			}
                                });

						});}

                                                                if($("#feedreading_bookmark_9").length > 0){
                          
						google.feeds.lookupFeed("http://aboutaboyandhisbriefs.wordpress.com/", function() {
							var url9= this.url, feed9 = new google.feeds.Feed(this.url);
                            feed9.load(function(result_9){
                                if (!result_9.error) {
                                addAge(result_9.feed, "#feedreading_bookmark_9", "#feedreading_anchor_9", "#feedreading_info_9", "#feedreading_previewtoggle_9", "#frbl_last_posttitle_9");
                  			} else {
                      			addZeroAge("#feedreading_bookmark_9");
                  			}
                                });

						});}

                                                                if($("#feedreading_bookmark_10").length > 0){
                          
						google.feeds.lookupFeed("http://www.alanilagan.com/", function() {
							var url10= this.url, feed10 = new google.feeds.Feed(this.url);
                            feed10.load(function(result_10){
                                if (!result_10.error) {
                                addAge(result_10.feed, "#feedreading_bookmark_10", "#feedreading_anchor_10", "#feedreading_info_10", "#feedreading_previewtoggle_10", "#frbl_last_posttitle_10");
                  			} else {
                      			addZeroAge("#feedreading_bookmark_10");
                  			}
                                });

						});}

                                                                if($("#feedreading_bookmark_34").length > 0){
                          
						google.feeds.lookupFeed("http://artificialknight.wordpress.com/", function() {
							var url34= this.url, feed34 = new google.feeds.Feed(this.url);
                            feed34.load(function(result_34){
                                if (!result_34.error) {
                                addAge(result_34.feed, "#feedreading_bookmark_34", "#feedreading_anchor_34", "#feedreading_info_34", "#feedreading_previewtoggle_34", "#frbl_last_posttitle_34");
                  			} else {
                      			addZeroAge("#feedreading_bookmark_34");
                  			}
                                });

						});}

                                                                if($("#feedreading_bookmark_11").length > 0){
                          
						google.feeds.lookupFeed("http://www.aussielicious.com.au", function() {
							var url11= this.url, feed11 = new google.feeds.Feed(this.url);
                            feed11.load(function(result_11){
                                if (!result_11.error) {
                                addAge(result_11.feed, "#feedreading_bookmark_11", "#feedreading_anchor_11", "#feedreading_info_11", "#feedreading_previewtoggle_11", "#frbl_last_posttitle_11");
                  			} else {
                      			addZeroAge("#feedreading_bookmark_11");
                  			}
                                });

						});}

                                                                if($("#feedreading_bookmark_45").length > 0){
                          
						google.feeds.lookupFeed("http://www.bandittalks.blogspot.com/", function() {
							var url45= this.url, feed45 = new google.feeds.Feed(this.url);
                            feed45.load(function(result_45){
                                if (!result_45.error) {
                                addAge(result_45.feed, "#feedreading_bookmark_45", "#feedreading_anchor_45", "#feedreading_info_45", "#feedreading_previewtoggle_45", "#frbl_last_posttitle_45");
                  			} else {
                      			addZeroAge("#feedreading_bookmark_45");
                  			}
                                });

						});}

                                                                if($("#feedreading_bookmark_49").length > 0){
                          
						google.feeds.lookupFeed("http://bedstory.blogspot.com/", function() {
							var url49= this.url, feed49 = new google.feeds.Feed(this.url);
                            feed49.load(function(result_49){
                                if (!result_49.error) {
                                addAge(result_49.feed, "#feedreading_bookmark_49", "#feedreading_anchor_49", "#feedreading_info_49", "#feedreading_previewtoggle_49", "#frbl_last_posttitle_49");
                  			} else {
                      			addZeroAge("#feedreading_bookmark_49");
                  			}
                                });

						});}

                                                                if($("#feedreading_bookmark_50").length > 0){
                          
						google.feeds.lookupFeed("http://biggaysexshow.com/", function() {
							var url50= this.url, feed50 = new google.feeds.Feed(this.url);
                            feed50.load(function(result_50){
                                if (!result_50.error) {
                                addAge(result_50.feed, "#feedreading_bookmark_50", "#feedreading_anchor_50", "#feedreading_info_50", "#feedreading_previewtoggle_50", "#frbl_last_posttitle_50");
                  			} else {
                      			addZeroAge("#feedreading_bookmark_50");
                  			}
                                });

						});}

                                                                if($("#feedreading_bookmark_21").length > 0){
                          
						google.feeds.lookupFeed("http://www.blobbysblog.com", function() {
							var url21= this.url, feed21 = new google.feeds.Feed(this.url);
                            feed21.load(function(result_21){
                                if (!result_21.error) {
                                addAge(result_21.feed, "#feedreading_bookmark_21", "#feedreading_anchor_21", "#feedreading_info_21", "#feedreading_previewtoggle_21", "#frbl_last_posttitle_21");
                  			} else {
                      			addZeroAge("#feedreading_bookmark_21");
                  			}
                                });

						});}

                                                                if($("#feedreading_bookmark_12").length > 0){
                          
						google.feeds.lookupFeed("http://brettcajun.blogspot.com", function() {
							var url12= this.url, feed12 = new google.feeds.Feed(this.url);
                            feed12.load(function(result_12){
                                if (!result_12.error) {
                                addAge(result_12.feed, "#feedreading_bookmark_12", "#feedreading_anchor_12", "#feedreading_info_12", "#feedreading_previewtoggle_12", "#frbl_last_posttitle_12");
                  			} else {
                      			addZeroAge("#feedreading_bookmark_12");
                  			}
                                });

						});}

                                                                if($("#feedreading_bookmark_30").length > 0){
                          
						google.feeds.lookupFeed("http://blog.cowboyinbrla.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_13").length > 0){
                          
						google.feeds.lookupFeed("http://www.dannation.org/", function() {
							var url13= this.url, feed13 = new google.feeds.Feed(this.url);
                            feed13.load(function(result_13){
                                if (!result_13.error) {
                                addAge(result_13.feed, "#feedreading_bookmark_13", "#feedreading_anchor_13", "#feedreading_info_13", "#feedreading_previewtoggle_13", "#frbl_last_posttitle_13");
                  			} else {
                      			addZeroAge("#feedreading_bookmark_13");
                  			}
                                });

						});}

                                                                if($("#feedreading_bookmark_42").length > 0){
                          
						google.feeds.lookupFeed("http://designerblog.blogspot.com/", function() {
							var url42= this.url, feed42 = new google.feeds.Feed(this.url);
                            feed42.load(function(result_42){
                                if (!result_42.error) {
                                addAge(result_42.feed, "#feedreading_bookmark_42", "#feedreading_anchor_42", "#feedreading_info_42", "#feedreading_previewtoggle_42", "#frbl_last_posttitle_42");
                  			} else {
                      			addZeroAge("#feedreading_bookmark_42");
                  			}
                                });

						});}

                                                                if($("#feedreading_bookmark_38").length > 0){
                          
						google.feeds.lookupFeed("http://korykinnick.blogspot.com/", function() {
							var url38= this.url, feed38 = new google.feeds.Feed(this.url);
                            feed38.load(function(result_38){
                                if (!result_38.error) {
                                addAge(result_38.feed, "#feedreading_bookmark_38", "#feedreading_anchor_38", "#feedreading_info_38", "#feedreading_previewtoggle_38", "#frbl_last_posttitle_38");
                  			} else {
                      			addZeroAge("#feedreading_bookmark_38");
                  			}
                                });

						});}

                                                                if($("#feedreading_bookmark_31").length > 0){
                          
						google.feeds.lookupFeed("http://elastictimeandspace.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_22").length > 0){
                          
						google.feeds.lookupFeed("http://fairviewsue.wordpress.com/", function() {
							var url22= this.url, feed22 = new google.feeds.Feed(this.url);
                            feed22.load(function(result_22){
                                if (!result_22.error) {
                                addAge(result_22.feed, "#feedreading_bookmark_22", "#feedreading_anchor_22", "#feedreading_info_22", "#feedreading_previewtoggle_22", "#frbl_last_posttitle_22");
                  			} else {
                      			addZeroAge("#feedreading_bookmark_22");
                  			}
                                });

						});}

                                                                if($("#feedreading_bookmark_51").length > 0){
                          
						google.feeds.lookupFeed("http://erikrubright.com/blog/", function() {
							var url51= this.url, feed51 = new google.feeds.Feed(this.url);
                            feed51.load(function(result_51){
                                if (!result_51.error) {
                                addAge(result_51.feed, "#feedreading_bookmark_51", "#feedreading_anchor_51", "#feedreading_info_51", "#feedreading_previewtoggle_51", "#frbl_last_posttitle_51");
                  			} else {
                      			addZeroAge("#feedreading_bookmark_51");
                  			}
                                });

						});}

                                                                if($("#feedreading_bookmark_23").length > 0){
                          
						google.feeds.lookupFeed("http://gaysthinkitsfabulous.com", function() {
							var url23= this.url, feed23 = new google.feeds.Feed(this.url);
                            feed23.load(function(result_23){
                                if (!result_23.error) {
                                addAge(result_23.feed, "#feedreading_bookmark_23", "#feedreading_anchor_23", "#feedreading_info_23", "#feedreading_previewtoggle_23", "#frbl_last_posttitle_23");
                  			} else {
                      			addZeroAge("#feedreading_bookmark_23");
                  			}
                                });

						});}

                                                                if($("#feedreading_bookmark_15").length > 0){
                          
						google.feeds.lookupFeed("http://homersworld.blogspot.com", function() {
							var url15= this.url, feed15 = new google.feeds.Feed(this.url);
                            feed15.load(function(result_15){
                                if (!result_15.error) {
                                addAge(result_15.feed, "#feedreading_bookmark_15", "#feedreading_anchor_15", "#feedreading_info_15", "#feedreading_previewtoggle_15", "#frbl_last_posttitle_15");
                  			} else {
                      			addZeroAge("#feedreading_bookmark_15");
                  			}
                                });

						});}

                                                                if($("#feedreading_bookmark_35").length > 0){
                          
						google.feeds.lookupFeed("http://ishouldbelaughing.blogspot.com/", function() {
							var url35= this.url, feed35 = new google.feeds.Feed(this.url);
                            feed35.load(function(result_35){
                                if (!result_35.error) {
                                addAge(result_35.feed, "#feedreading_bookmark_35", "#feedreading_anchor_35", "#feedreading_info_35", "#feedreading_previewtoggle_35", "#frbl_last_posttitle_35");
                  			} else {
                      			addZeroAge("#feedreading_bookmark_35");
                  			}
                                });

						});}

                                                                if($("#feedreading_bookmark_40").length > 0){
                          
						google.feeds.lookupFeed("http://drunkenass.blogspot.com/", function() {
							var url40= this.url, feed40 = new google.feeds.Feed(this.url);
                            feed40.load(function(result_40){
                                if (!result_40.error) {
                                addAge(result_40.feed, "#feedreading_bookmark_40", "#feedreading_anchor_40", "#feedreading_info_40", "#feedreading_previewtoggle_40", "#frbl_last_posttitle_40");
                  			} else {
                      			addZeroAge("#feedreading_bookmark_40");
                  			}
                                });

						});}

                                                                if($("#feedreading_bookmark_16").length > 0){
                          
						google.feeds.lookupFeed("http://imnot2bzy.blogspot.com", function() {
							var url16= this.url, feed16 = new google.feeds.Feed(this.url);
                            feed16.load(function(result_16){
                                if (!result_16.error) {
                                addAge(result_16.feed, "#feedreading_bookmark_16", "#feedreading_anchor_16", "#feedreading_info_16", "#feedreading_previewtoggle_16", "#frbl_last_posttitle_16");
                  			} else {
                      			addZeroAge("#feedreading_bookmark_16");
                  			}
                                });

						});}

                                                                if($("#feedreading_bookmark_43").length > 0){
                          
						google.feeds.lookupFeed("http://itsakirby.wordpress.com/", function() {
							var url43= this.url, feed43 = new google.feeds.Feed(this.url);
                            feed43.load(function(result_43){
                                if (!result_43.error) {
                                addAge(result_43.feed, "#feedreading_bookmark_43", "#feedreading_anchor_43", "#feedreading_info_43", "#feedreading_previewtoggle_43", "#frbl_last_posttitle_43");
                  			} else {
                      			addZeroAge("#feedreading_bookmark_43");
                  			}
                                });

						});}

                                                                if($("#feedreading_bookmark_47").length > 0){
                          
						google.feeds.lookupFeed("http://justajeepguydc.blogspot.com/", function() {
							var url47= this.url, feed47 = new google.feeds.Feed(this.url);
                            feed47.load(function(result_47){
                                if (!result_47.error) {
                                addAge(result_47.feed, "#feedreading_bookmark_47", "#feedreading_anchor_47", "#feedreading_info_47", "#feedreading_previewtoggle_47", "#frbl_last_posttitle_47");
                  			} else {
                      			addZeroAge("#feedreading_bookmark_47");
                  			}
                                });

						});}

                                                                if($("#feedreading_bookmark_39").length > 0){
                          
						google.feeds.lookupFeed("http://keepingitbrief.blogspot.com/", function() {
							var url39= this.url, feed39 = new google.feeds.Feed(this.url);
                            feed39.load(function(result_39){
                                if (!result_39.error) {
                                addAge(result_39.feed, "#feedreading_bookmark_39", "#feedreading_anchor_39", "#feedreading_info_39", "#feedreading_previewtoggle_39", "#frbl_last_posttitle_39");
                  			} else {
                      			addZeroAge("#feedreading_bookmark_39");
                  			}
                                });

						});}

                                                                if($("#feedreading_bookmark_17").length > 0){
                          
						google.feeds.lookupFeed("http://www.kennethinthe212.com", function() {
							var url17= this.url, feed17 = new google.feeds.Feed(this.url);
                            feed17.load(function(result_17){
                                if (!result_17.error) {
                                addAge(result_17.feed, "#feedreading_bookmark_17", "#feedreading_anchor_17", "#feedreading_info_17", "#feedreading_previewtoggle_17", "#frbl_last_posttitle_17");
                  			} else {
                      			addZeroAge("#feedreading_bookmark_17");
                  			}
                                });

						});}

                                                                if($("#feedreading_bookmark_52").length > 0){
                          
						google.feeds.lookupFeed("http://mayasagaypole.blogspot.com/", function() {
							var url52= this.url, feed52 = new google.feeds.Feed(this.url);
                            feed52.load(function(result_52){
                                if (!result_52.error) {
                                addAge(result_52.feed, "#feedreading_bookmark_52", "#feedreading_anchor_52", "#feedreading_info_52", "#feedreading_previewtoggle_52", "#frbl_last_posttitle_52");
                  			} else {
                      			addZeroAge("#feedreading_bookmark_52");
                  			}
                                });

						});}

                                                                if($("#feedreading_bookmark_54").length > 0){
                          
						google.feeds.lookupFeed("http://mostly-unfabulous.blogspot.com/", function() {
							var url54= this.url, feed54 = new google.feeds.Feed(this.url);
                            feed54.load(function(result_54){
                                if (!result_54.error) {
                                addAge(result_54.feed, "#feedreading_bookmark_54", "#feedreading_anchor_54", "#feedreading_info_54", "#feedreading_previewtoggle_54", "#frbl_last_posttitle_54");
                  			} else {
                      			addZeroAge("#feedreading_bookmark_54");
                  			}
                                });

						});}

                                                                if($("#feedreading_bookmark_24").length > 0){
                          
						google.feeds.lookupFeed("http://www.hbjock.org/", function() {
							var url24= this.url, feed24 = new google.feeds.Feed(this.url);
                            feed24.load(function(result_24){
                                if (!result_24.error) {
                                addAge(result_24.feed, "#feedreading_bookmark_24", "#feedreading_anchor_24", "#feedreading_info_24", "#feedreading_previewtoggle_24", "#frbl_last_posttitle_24");
                  			} else {
                      			addZeroAge("#feedreading_bookmark_24");
                  			}
                                });

						});}

                                                                if($("#feedreading_bookmark_33").length > 0){
                          
						google.feeds.lookupFeed("http://mygayhell.blogspot.com/", function() {
							var url33= this.url, feed33 = new google.feeds.Feed(this.url);
                            feed33.load(function(result_33){
                                if (!result_33.error) {
                                addAge(result_33.feed, "#feedreading_bookmark_33", "#feedreading_anchor_33", "#feedreading_info_33", "#feedreading_previewtoggle_33", "#frbl_last_posttitle_33");
                  			} else {
                      			addZeroAge("#feedreading_bookmark_33");
                  			}
                                });

						});}

                                                                if($("#feedreading_bookmark_48").length > 0){
                          
						google.feeds.lookupFeed("http://myjournalofrandomthings.blogspot.com/", function() {
							var url48= this.url, feed48 = new google.feeds.Feed(this.url);
                            feed48.load(function(result_48){
                                if (!result_48.error) {
                                addAge(result_48.feed, "#feedreading_bookmark_48", "#feedreading_anchor_48", "#feedreading_info_48", "#feedreading_previewtoggle_48", "#frbl_last_posttitle_48");
                  			} else {
                      			addZeroAge("#feedreading_bookmark_48");
                  			}
                                });

						});}

                                                                if($("#feedreading_bookmark_57").length > 0){
                          
						google.feeds.lookupFeed("http://nicetoseestevieb.blogspot.com/", function() {
							var url57= this.url, feed57 = new google.feeds.Feed(this.url);
                            feed57.load(function(result_57){
                                if (!result_57.error) {
                                addAge(result_57.feed, "#feedreading_bookmark_57", "#feedreading_anchor_57", "#feedreading_info_57", "#feedreading_previewtoggle_57", "#frbl_last_posttitle_57");
                  			} else {
                      			addZeroAge("#feedreading_bookmark_57");
                  			}
                                });

						});}

                                                                if($("#feedreading_bookmark_56").length > 0){
                          
						google.feeds.lookupFeed("http://nycdncrblog.blogspot.com/", function() {
							var url56= this.url, feed56 = new google.feeds.Feed(this.url);
                            feed56.load(function(result_56){
                                if (!result_56.error) {
                                addAge(result_56.feed, "#feedreading_bookmark_56", "#feedreading_anchor_56", "#feedreading_info_56", "#feedreading_previewtoggle_56", "#frbl_last_posttitle_56");
                  			} else {
                      			addZeroAge("#feedreading_bookmark_56");
                  			}
                                });

						});}

                                                                if($("#feedreading_bookmark_53").length > 0){
                          
						google.feeds.lookupFeed("http://porncake.blogspot.com/", function() {
							var url53= this.url, feed53 = new google.feeds.Feed(this.url);
                            feed53.load(function(result_53){
                                if (!result_53.error) {
                                addAge(result_53.feed, "#feedreading_bookmark_53", "#feedreading_anchor_53", "#feedreading_info_53", "#feedreading_previewtoggle_53", "#frbl_last_posttitle_53");
                  			} else {
                      			addZeroAge("#feedreading_bookmark_53");
                  			}
                                });

						});}

                                                                if($("#feedreading_bookmark_18").length > 0){
                          
						google.feeds.lookupFeed("http://ramblingalong.com/", function() {
							var url18= this.url, feed18 = new google.feeds.Feed(this.url);
                            feed18.load(function(result_18){
                                if (!result_18.error) {
                                addAge(result_18.feed, "#feedreading_bookmark_18", "#feedreading_anchor_18", "#feedreading_info_18", "#feedreading_previewtoggle_18", "#frbl_last_posttitle_18");
                  			} else {
                      			addZeroAge("#feedreading_bookmark_18");
                  			}
                                });

						});}

                                                                if($("#feedreading_bookmark_37").length > 0){
                          
						google.feeds.lookupFeed("http://rejectedreality.net", function() {
							var url37= this.url, feed37 = new google.feeds.Feed(this.url);
                            feed37.load(function(result_37){
                                if (!result_37.error) {
                                addAge(result_37.feed, "#feedreading_bookmark_37", "#feedreading_anchor_37", "#feedreading_info_37", "#feedreading_previewtoggle_37", "#frbl_last_posttitle_37");
                  			} else {
                      			addZeroAge("#feedreading_bookmark_37");
                  			}
                                });

						});}

                                                                if($("#feedreading_bookmark_46").length > 0){
                          
						google.feeds.lookupFeed("http://reluctantrebel.blogspot.com/", function() {
							var url46= this.url, feed46 = new google.feeds.Feed(this.url);
                            feed46.load(function(result_46){
                                if (!result_46.error) {
                                addAge(result_46.feed, "#feedreading_bookmark_46", "#feedreading_anchor_46", "#feedreading_info_46", "#feedreading_previewtoggle_46", "#frbl_last_posttitle_46");
                  			} else {
                      			addZeroAge("#feedreading_bookmark_46");
                  			}
                                });

						});}

                                                                if($("#feedreading_bookmark_25").length > 0){
                          
						google.feeds.lookupFeed("http://spiritofsaintlewis.blogspot.com/", function() {
							var url25= this.url, feed25 = new google.feeds.Feed(this.url);
                            feed25.load(function(result_25){
                                if (!result_25.error) {
                                addAge(result_25.feed, "#feedreading_bookmark_25", "#feedreading_anchor_25", "#feedreading_info_25", "#feedreading_previewtoggle_25", "#frbl_last_posttitle_25");
                  			} else {
                      			addZeroAge("#feedreading_bookmark_25");
                  			}
                                });

						});}

                                                                if($("#feedreading_bookmark_36").length > 0){
                          
						google.feeds.lookupFeed("http://midnightgarden12.wordpress.com/", function() {
							var url36= this.url, feed36 = new google.feeds.Feed(this.url);
                            feed36.load(function(result_36){
                                if (!result_36.error) {
                                addAge(result_36.feed, "#feedreading_bookmark_36", "#feedreading_anchor_36", "#feedreading_info_36", "#feedreading_previewtoggle_36", "#frbl_last_posttitle_36");
                  			} else {
                      			addZeroAge("#feedreading_bookmark_36");
                  			}
                                });

						});}

                                                                if($("#feedreading_bookmark_20").length > 0){
                          
						google.feeds.lookupFeed("http://www.sfmoby.us", function() {
							var url20= this.url, feed20 = new google.feeds.Feed(this.url);
                            feed20.load(function(result_20){
                                if (!result_20.error) {
                                addAge(result_20.feed, "#feedreading_bookmark_20", "#feedreading_anchor_20", "#feedreading_info_20", "#feedreading_previewtoggle_20", "#frbl_last_posttitle_20");
                  			} else {
                      			addZeroAge("#feedreading_bookmark_20");
                  			}
                                });

						});}

                                                                if($("#feedreading_bookmark_28").length > 0){
                          
						google.feeds.lookupFeed("http://tonkamanor.blogspot.com/", function() {
							var url28= this.url, feed28 = new google.feeds.Feed(this.url);
                            feed28.load(function(result_28){
                                if (!result_28.error) {
                                addAge(result_28.feed, "#feedreading_bookmark_28", "#feedreading_anchor_28", "#feedreading_info_28", "#feedreading_previewtoggle_28", "#frbl_last_posttitle_28");
                  			} else {
                      			addZeroAge("#feedreading_bookmark_28");
                  			}
                                });

						});}

                                                                if($("#feedreading_bookmark_44").length > 0){
                          
						google.feeds.lookupFeed("http://tresfabsweetie.blogspot.com/", function() {
							var url44= this.url, feed44 = new google.feeds.Feed(this.url);
                            feed44.load(function(result_44){
                                if (!result_44.error) {
                                addAge(result_44.feed, "#feedreading_bookmark_44", "#feedreading_anchor_44", "#feedreading_info_44", "#feedreading_previewtoggle_44", "#frbl_last_posttitle_44");
                  			} else {
                      			addZeroAge("#feedreading_bookmark_44");
                  			}
                                });

						});}

                                                                if($("#feedreading_bookmark_29").length > 0){
                          
						google.feeds.lookupFeed("http://yaniblog.blogspot.com/", function() {
							var url29= this.url, feed29 = new google.feeds.Feed(this.url);
                            feed29.load(function(result_29){
                                if (!result_29.error) {
                                addAge(result_29.feed, "#feedreading_bookmark_29", "#feedreading_anchor_29", "#feedreading_info_29", "#feedreading_previewtoggle_29", "#frbl_last_posttitle_29");
                  			} else {
                      			addZeroAge("#feedreading_bookmark_29");
                  			}
                                });

						});}

                                          
																															if($("#single-2_feedreading_bookmark_32").length > 0){
											google.feeds.lookupFeed("http://2centsworthdownunder.blogspot.com/", function() {
											var url_single_232= this.url, feed_single_232 = new google.feeds.Feed(this.url);
											feed_single_232.load(function(result_single_232){
											if (!result_single_232.error) {
											addAge(result_single_232.feed, "#single-2_feedreading_bookmark_32", "#single-2_feedreading_anchor_32", "#single-2_feedreading_info_32", "#single-2_feedreading_previewtoggle_32", "#single-2_frbl_last_posttitle_32");
																					} else {
											addZeroAge("#single-2_feedreading_bookmark_32");
											}
										});
									});}
                                          											if($("#single-2_feedreading_bookmark_55").length > 0){
											google.feeds.lookupFeed("http://dailyafirmation.livejournal.com/", 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_9").length > 0){
											google.feeds.lookupFeed("http://aboutaboyandhisbriefs.wordpress.com/", function() {
											var url_single_29= this.url, feed_single_29 = new google.feeds.Feed(this.url);
											feed_single_29.load(function(result_single_29){
											if (!result_single_29.error) {
											addAge(result_single_29.feed, "#single-2_feedreading_bookmark_9", "#single-2_feedreading_anchor_9", "#single-2_feedreading_info_9", "#single-2_feedreading_previewtoggle_9", "#single-2_frbl_last_posttitle_9");
																					} else {
											addZeroAge("#single-2_feedreading_bookmark_9");
											}
										});
									});}
                                          											if($("#single-2_feedreading_bookmark_10").length > 0){
											google.feeds.lookupFeed("http://www.alanilagan.com/", function() {
											var url_single_210= this.url, feed_single_210 = new google.feeds.Feed(this.url);
											feed_single_210.load(function(result_single_210){
											if (!result_single_210.error) {
											addAge(result_single_210.feed, "#single-2_feedreading_bookmark_10", "#single-2_feedreading_anchor_10", "#single-2_feedreading_info_10", "#single-2_feedreading_previewtoggle_10", "#single-2_frbl_last_posttitle_10");
																					} else {
											addZeroAge("#single-2_feedreading_bookmark_10");
											}
										});
									});}
                                          											if($("#single-2_feedreading_bookmark_34").length > 0){
											google.feeds.lookupFeed("http://artificialknight.wordpress.com/", function() {
											var url_single_234= this.url, feed_single_234 = new google.feeds.Feed(this.url);
											feed_single_234.load(function(result_single_234){
											if (!result_single_234.error) {
											addAge(result_single_234.feed, "#single-2_feedreading_bookmark_34", "#single-2_feedreading_anchor_34", "#single-2_feedreading_info_34", "#single-2_feedreading_previewtoggle_34", "#single-2_frbl_last_posttitle_34");
																					} else {
											addZeroAge("#single-2_feedreading_bookmark_34");
											}
										});
									});}
                                          											if($("#single-2_feedreading_bookmark_11").length > 0){
											google.feeds.lookupFeed("http://www.aussielicious.com.au", function() {
											var url_single_211= this.url, feed_single_211 = new google.feeds.Feed(this.url);
											feed_single_211.load(function(result_single_211){
											if (!result_single_211.error) {
											addAge(result_single_211.feed, "#single-2_feedreading_bookmark_11", "#single-2_feedreading_anchor_11", "#single-2_feedreading_info_11", "#single-2_feedreading_previewtoggle_11", "#single-2_frbl_last_posttitle_11");
																					} else {
											addZeroAge("#single-2_feedreading_bookmark_11");
											}
										});
									});}
                                          											if($("#single-2_feedreading_bookmark_45").length > 0){
											google.feeds.lookupFeed("http://www.bandittalks.blogspot.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_49").length > 0){
											google.feeds.lookupFeed("http://bedstory.blogspot.com/", function() {
											var url_single_249= this.url, feed_single_249 = new google.feeds.Feed(this.url);
											feed_single_249.load(function(result_single_249){
											if (!result_single_249.error) {
											addAge(result_single_249.feed, "#single-2_feedreading_bookmark_49", "#single-2_feedreading_anchor_49", "#single-2_feedreading_info_49", "#single-2_feedreading_previewtoggle_49", "#single-2_frbl_last_posttitle_49");
																					} else {
											addZeroAge("#single-2_feedreading_bookmark_49");
											}
										});
									});}
                                          											if($("#single-2_feedreading_bookmark_50").length > 0){
											google.feeds.lookupFeed("http://biggaysexshow.com/", 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_21").length > 0){
											google.feeds.lookupFeed("http://www.blobbysblog.com", function() {
											var url_single_221= this.url, feed_single_221 = new google.feeds.Feed(this.url);
											feed_single_221.load(function(result_single_221){
											if (!result_single_221.error) {
											addAge(result_single_221.feed, "#single-2_feedreading_bookmark_21", "#single-2_feedreading_anchor_21", "#single-2_feedreading_info_21", "#single-2_feedreading_previewtoggle_21", "#single-2_frbl_last_posttitle_21");
																					} else {
											addZeroAge("#single-2_feedreading_bookmark_21");
											}
										});
									});}
                                          											if($("#single-2_feedreading_bookmark_12").length > 0){
											google.feeds.lookupFeed("http://brettcajun.blogspot.com", function() {
											var url_single_212= this.url, feed_single_212 = new google.feeds.Feed(this.url);
											feed_single_212.load(function(result_single_212){
											if (!result_single_212.error) {
											addAge(result_single_212.feed, "#single-2_feedreading_bookmark_12", "#single-2_feedreading_anchor_12", "#single-2_feedreading_info_12", "#single-2_feedreading_previewtoggle_12", "#single-2_frbl_last_posttitle_12");
																					} else {
											addZeroAge("#single-2_feedreading_bookmark_12");
											}
										});
									});}
                                          											if($("#single-2_feedreading_bookmark_30").length > 0){
											google.feeds.lookupFeed("http://blog.cowboyinbrla.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_13").length > 0){
											google.feeds.lookupFeed("http://www.dannation.org/", function() {
											var url_single_213= this.url, feed_single_213 = new google.feeds.Feed(this.url);
											feed_single_213.load(function(result_single_213){
											if (!result_single_213.error) {
											addAge(result_single_213.feed, "#single-2_feedreading_bookmark_13", "#single-2_feedreading_anchor_13", "#single-2_feedreading_info_13", "#single-2_feedreading_previewtoggle_13", "#single-2_frbl_last_posttitle_13");
																					} else {
											addZeroAge("#single-2_feedreading_bookmark_13");
											}
										});
									});}
                                          											if($("#single-2_feedreading_bookmark_42").length > 0){
											google.feeds.lookupFeed("http://designerblog.blogspot.com/", 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_38").length > 0){
											google.feeds.lookupFeed("http://korykinnick.blogspot.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_31").length > 0){
											google.feeds.lookupFeed("http://elastictimeandspace.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_22").length > 0){
											google.feeds.lookupFeed("http://fairviewsue.wordpress.com/", function() {
											var url_single_222= this.url, feed_single_222 = new google.feeds.Feed(this.url);
											feed_single_222.load(function(result_single_222){
											if (!result_single_222.error) {
											addAge(result_single_222.feed, "#single-2_feedreading_bookmark_22", "#single-2_feedreading_anchor_22", "#single-2_feedreading_info_22", "#single-2_feedreading_previewtoggle_22", "#single-2_frbl_last_posttitle_22");
																					} else {
											addZeroAge("#single-2_feedreading_bookmark_22");
											}
										});
									});}
                                          											if($("#single-2_feedreading_bookmark_51").length > 0){
											google.feeds.lookupFeed("http://erikrubright.com/blog/", 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_23").length > 0){
											google.feeds.lookupFeed("http://gaysthinkitsfabulous.com", function() {
											var url_single_223= this.url, feed_single_223 = new google.feeds.Feed(this.url);
											feed_single_223.load(function(result_single_223){
											if (!result_single_223.error) {
											addAge(result_single_223.feed, "#single-2_feedreading_bookmark_23", "#single-2_feedreading_anchor_23", "#single-2_feedreading_info_23", "#single-2_feedreading_previewtoggle_23", "#single-2_frbl_last_posttitle_23");
																					} else {
											addZeroAge("#single-2_feedreading_bookmark_23");
											}
										});
									});}
                                          											if($("#single-2_feedreading_bookmark_15").length > 0){
											google.feeds.lookupFeed("http://homersworld.blogspot.com", function() {
											var url_single_215= this.url, feed_single_215 = new google.feeds.Feed(this.url);
											feed_single_215.load(function(result_single_215){
											if (!result_single_215.error) {
											addAge(result_single_215.feed, "#single-2_feedreading_bookmark_15", "#single-2_feedreading_anchor_15", "#single-2_feedreading_info_15", "#single-2_feedreading_previewtoggle_15", "#single-2_frbl_last_posttitle_15");
																					} else {
											addZeroAge("#single-2_feedreading_bookmark_15");
											}
										});
									});}
                                          											if($("#single-2_feedreading_bookmark_35").length > 0){
											google.feeds.lookupFeed("http://ishouldbelaughing.blogspot.com/", function() {
											var url_single_235= this.url, feed_single_235 = new google.feeds.Feed(this.url);
											feed_single_235.load(function(result_single_235){
											if (!result_single_235.error) {
											addAge(result_single_235.feed, "#single-2_feedreading_bookmark_35", "#single-2_feedreading_anchor_35", "#single-2_feedreading_info_35", "#single-2_feedreading_previewtoggle_35", "#single-2_frbl_last_posttitle_35");
																					} else {
											addZeroAge("#single-2_feedreading_bookmark_35");
											}
										});
									});}
                                          											if($("#single-2_feedreading_bookmark_40").length > 0){
											google.feeds.lookupFeed("http://drunkenass.blogspot.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_16").length > 0){
											google.feeds.lookupFeed("http://imnot2bzy.blogspot.com", function() {
											var url_single_216= this.url, feed_single_216 = new google.feeds.Feed(this.url);
											feed_single_216.load(function(result_single_216){
											if (!result_single_216.error) {
											addAge(result_single_216.feed, "#single-2_feedreading_bookmark_16", "#single-2_feedreading_anchor_16", "#single-2_feedreading_info_16", "#single-2_feedreading_previewtoggle_16", "#single-2_frbl_last_posttitle_16");
																					} else {
											addZeroAge("#single-2_feedreading_bookmark_16");
											}
										});
									});}
                                          											if($("#single-2_feedreading_bookmark_43").length > 0){
											google.feeds.lookupFeed("http://itsakirby.wordpress.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_47").length > 0){
											google.feeds.lookupFeed("http://justajeepguydc.blogspot.com/", 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_39").length > 0){
											google.feeds.lookupFeed("http://keepingitbrief.blogspot.com/", function() {
											var url_single_239= this.url, feed_single_239 = new google.feeds.Feed(this.url);
											feed_single_239.load(function(result_single_239){
											if (!result_single_239.error) {
											addAge(result_single_239.feed, "#single-2_feedreading_bookmark_39", "#single-2_feedreading_anchor_39", "#single-2_feedreading_info_39", "#single-2_feedreading_previewtoggle_39", "#single-2_frbl_last_posttitle_39");
																					} else {
											addZeroAge("#single-2_feedreading_bookmark_39");
											}
										});
									});}
                                          											if($("#single-2_feedreading_bookmark_17").length > 0){
											google.feeds.lookupFeed("http://www.kennethinthe212.com", function() {
											var url_single_217= this.url, feed_single_217 = new google.feeds.Feed(this.url);
											feed_single_217.load(function(result_single_217){
											if (!result_single_217.error) {
											addAge(result_single_217.feed, "#single-2_feedreading_bookmark_17", "#single-2_feedreading_anchor_17", "#single-2_feedreading_info_17", "#single-2_feedreading_previewtoggle_17", "#single-2_frbl_last_posttitle_17");
																					} else {
											addZeroAge("#single-2_feedreading_bookmark_17");
											}
										});
									});}
                                          											if($("#single-2_feedreading_bookmark_52").length > 0){
											google.feeds.lookupFeed("http://mayasagaypole.blogspot.com/", 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_54").length > 0){
											google.feeds.lookupFeed("http://mostly-unfabulous.blogspot.com/", 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_24").length > 0){
											google.feeds.lookupFeed("http://www.hbjock.org/", function() {
											var url_single_224= this.url, feed_single_224 = new google.feeds.Feed(this.url);
											feed_single_224.load(function(result_single_224){
											if (!result_single_224.error) {
											addAge(result_single_224.feed, "#single-2_feedreading_bookmark_24", "#single-2_feedreading_anchor_24", "#single-2_feedreading_info_24", "#single-2_feedreading_previewtoggle_24", "#single-2_frbl_last_posttitle_24");
																					} else {
											addZeroAge("#single-2_feedreading_bookmark_24");
											}
										});
									});}
                                          											if($("#single-2_feedreading_bookmark_33").length > 0){
											google.feeds.lookupFeed("http://mygayhell.blogspot.com/", function() {
											var url_single_233= this.url, feed_single_233 = new google.feeds.Feed(this.url);
											feed_single_233.load(function(result_single_233){
											if (!result_single_233.error) {
											addAge(result_single_233.feed, "#single-2_feedreading_bookmark_33", "#single-2_feedreading_anchor_33", "#single-2_feedreading_info_33", "#single-2_feedreading_previewtoggle_33", "#single-2_frbl_last_posttitle_33");
																					} else {
											addZeroAge("#single-2_feedreading_bookmark_33");
											}
										});
									});}
                                          											if($("#single-2_feedreading_bookmark_48").length > 0){
											google.feeds.lookupFeed("http://myjournalofrandomthings.blogspot.com/", function() {
											var url_single_248= this.url, feed_single_248 = new google.feeds.Feed(this.url);
											feed_single_248.load(function(result_single_248){
											if (!result_single_248.error) {
											addAge(result_single_248.feed, "#single-2_feedreading_bookmark_48", "#single-2_feedreading_anchor_48", "#single-2_feedreading_info_48", "#single-2_feedreading_previewtoggle_48", "#single-2_frbl_last_posttitle_48");
																					} else {
											addZeroAge("#single-2_feedreading_bookmark_48");
											}
										});
									});}
                                          											if($("#single-2_feedreading_bookmark_57").length > 0){
											google.feeds.lookupFeed("http://nicetoseestevieb.blogspot.com/", 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_56").length > 0){
											google.feeds.lookupFeed("http://nycdncrblog.blogspot.com/", 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_53").length > 0){
											google.feeds.lookupFeed("http://porncake.blogspot.com/", 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_18").length > 0){
											google.feeds.lookupFeed("http://ramblingalong.com/", function() {
											var url_single_218= this.url, feed_single_218 = new google.feeds.Feed(this.url);
											feed_single_218.load(function(result_single_218){
											if (!result_single_218.error) {
											addAge(result_single_218.feed, "#single-2_feedreading_bookmark_18", "#single-2_feedreading_anchor_18", "#single-2_feedreading_info_18", "#single-2_feedreading_previewtoggle_18", "#single-2_frbl_last_posttitle_18");
																					} else {
											addZeroAge("#single-2_feedreading_bookmark_18");
											}
										});
									});}
                                          											if($("#single-2_feedreading_bookmark_37").length > 0){
											google.feeds.lookupFeed("http://rejectedreality.net", 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_46").length > 0){
											google.feeds.lookupFeed("http://reluctantrebel.blogspot.com/", 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_25").length > 0){
											google.feeds.lookupFeed("http://spiritofsaintlewis.blogspot.com/", function() {
											var url_single_225= this.url, feed_single_225 = new google.feeds.Feed(this.url);
											feed_single_225.load(function(result_single_225){
											if (!result_single_225.error) {
											addAge(result_single_225.feed, "#single-2_feedreading_bookmark_25", "#single-2_feedreading_anchor_25", "#single-2_feedreading_info_25", "#single-2_feedreading_previewtoggle_25", "#single-2_frbl_last_posttitle_25");
																					} else {
											addZeroAge("#single-2_feedreading_bookmark_25");
											}
										});
									});}
                                          											if($("#single-2_feedreading_bookmark_36").length > 0){
											google.feeds.lookupFeed("http://midnightgarden12.wordpress.com/", 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_20").length > 0){
											google.feeds.lookupFeed("http://www.sfmoby.us", function() {
											var url_single_220= this.url, feed_single_220 = new google.feeds.Feed(this.url);
											feed_single_220.load(function(result_single_220){
											if (!result_single_220.error) {
											addAge(result_single_220.feed, "#single-2_feedreading_bookmark_20", "#single-2_feedreading_anchor_20", "#single-2_feedreading_info_20", "#single-2_feedreading_previewtoggle_20", "#single-2_frbl_last_posttitle_20");
																					} else {
											addZeroAge("#single-2_feedreading_bookmark_20");
											}
										});
									});}
                                          											if($("#single-2_feedreading_bookmark_28").length > 0){
											google.feeds.lookupFeed("http://tonkamanor.blogspot.com/", function() {
											var url_single_228= this.url, feed_single_228 = new google.feeds.Feed(this.url);
											feed_single_228.load(function(result_single_228){
											if (!result_single_228.error) {
											addAge(result_single_228.feed, "#single-2_feedreading_bookmark_28", "#single-2_feedreading_anchor_28", "#single-2_feedreading_info_28", "#single-2_feedreading_previewtoggle_28", "#single-2_frbl_last_posttitle_28");
																					} else {
											addZeroAge("#single-2_feedreading_bookmark_28");
											}
										});
									});}
                                          											if($("#single-2_feedreading_bookmark_44").length > 0){
											google.feeds.lookupFeed("http://tresfabsweetie.blogspot.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_29").length > 0){
											google.feeds.lookupFeed("http://yaniblog.blogspot.com/", function() {
											var url_single_229= this.url, feed_single_229 = new google.feeds.Feed(this.url);
											feed_single_229.load(function(result_single_229){
											if (!result_single_229.error) {
											addAge(result_single_229.feed, "#single-2_feedreading_bookmark_29", "#single-2_feedreading_anchor_29", "#single-2_feedreading_info_29", "#single-2_feedreading_previewtoggle_29", "#single-2_frbl_last_posttitle_29");
																					} else {
											addZeroAge("#single-2_feedreading_bookmark_29");
											}
										});
									});}
                                          																											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;
    	};
});
            
                    