numberToShow=5; pageTitle=document.title; ss=''; function removeNewItemsClass() { $('.newItems').removeClass("newItems"); document.title ='Manchester is my Planet'; } function getNewStories() { $.post("/_plugin/mimp/store/getFeedFromDBAbove.php",{timeStamp:firstItemTimeStamp,searchString:ss},function(data) {$("#newItemNotificationBar").remove(); $('.newItems').remove(); $('
').prependTo('#feedHolder').html(data); $('#newItemNotificationBar').css("display","block"); $("#newItemNotificationBar").hide(); $('#newItemNotificationBar').show(); if (noOfNewItems > 0) document.title = '('+noOfNewItems+') ' + pageTitle; if (noOfNewItems == 0) document.title = pageTitle; //set timer setTimeout ( "getNewStories()",checkDBForNewFeedsInterval); $('#newItemNotificationBar').click(function() { firstItemTimeStamp=firstItemTimeStampOfNewItems; $('#newItemNotificationBar').remove(); $('.newItems').fadeIn(1000,removeNewItemsClass()); return false; }); }); } $(document).ready(function () { tS=0; nOI=numberToShow; $('#feedHolder').append('

Loading feedajax loader icon

'); $.post("/_plugin/mimp/store/getFeedFromDBBelow.php",{timeStamp:tS,noOfItems:nOI,searchString:ss}, function(data) { $('
').appendTo('#feedHolder').html(data); $('.ajaxloader').remove(); $('#show-next-set').hide(); $('.newFeedData').fadeIn(1000); getNewStories(); }); });