//to hide the blog block if the google feed div has content $(window).bind("load",function() { $('div#block-aggregator-feed-1').show(); setTimeout(check, 0); function check() { var elm = document.getElementById('fc'); if (!elm) { //alert('no h2'); setTimeout(check, 100); // Check again in a quarter second or so return; } //endif if (elm) { //alert('i checked and the element exists... can i hide it?'); $('div#block-aggregator-feed-1').hide('fast'); };//endif };//end check }); //end all $(window).bind("load",function() { $(".ff_search_form").hide(); //if (window.location.href.indexOf("ebooks?") > -1) { // $(".ff_search_form").hide(); //};//endif }); //end all