$(document).ready(function(){
	jQuery('#header-search-input').focus(function(){
		if (jQuery(this).attr('value')=='Enter Keywords') {
			jQuery(this).attr('value','');
		}
	});
	jQuery('#header-search-input').blur(function(){
		if (jQuery(this).attr('value')=='' || typeof(jQuery(this).attr('value'))=='undefined') {
			jQuery(this).attr('value','Enter Keywords');
		}
	});	
});