jQuery(document).ready(function(){


	//search keyword value
	(function(){
		var item = jQuery('input#s');
		var newTxt = 'Search';
		item.attr("value",newTxt);
	    item.focus(function () {
			if (item.attr("value") == newTxt) {
				item.attr("value","");
			}
	    });
		item.blur(function () {
			if (item.attr("value") == "") {
				item.attr("value", newTxt);
			}
	    });
	})();

    //Search box text
    /*jQuery("input#s").val("Search");
    jQuery("input#s").focus(function(){
        jQuery(this).val("");
        jQuery(this).blur(function(){
            jQuery(this).val("Search");
        })
        return false;
    });*/
    
//	//Newsletter show hide // moved to newsletter plugin
//	jQuery("div.nl-signup").hide();
//	jQuery("p.nl-click")
//		.css("cursor","pointer")
//		.click(function(){
//			jQuery("div.nl-signup").slideToggle()
//		return false;
//    });
	
	//add class of first to the first li in the footer
	jQuery("#siteInformation ul li:first-child").addClass("first");
		
});
