/* For footer search box*/
//var footerSearchText = "Search News and Topics";
jQuery(function($){var fVal=$("#GH_search_field").val();
if(typeof fVal=="undefined"){return false;}
$("#GF_search_field").val(fVal).attr("autocomplete","off").click(function(){$(this).addClass("GF_search_active").val("");
}).blur(function(){$(this).removeClass("GF_search_active");$(this).val("");}).parent().submit(function(){var cNode=$(this).children(0);
if(cNode.val()==fVal){cNode.val("");
}});
});

