jQuery(document).ready(function() {

	//search home
	jQuery('#search_form input[type="text"]').focus(function() {
		if (this.value == this.defaultValue){this.value = '';}
		if(this.value != this.defaultValue){this.select();}
	});
	jQuery('#search_form input[type="text"]').blur(function() {
		if (jQuery.trim(this.value) == ''){this.value = (this.defaultValue ? this.defaultValue : '');}
	});
	
	//newsletter home
	jQuery('#newsletter_form input[type="text"]').focus(function() {
		if (this.value == this.defaultValue){this.value = '';}
		if(this.value != this.defaultValue){this.select();}
	});
	jQuery('#newsletter_form input[type="text"]').blur(function() {
		if (jQuery.trim(this.value) == ''){this.value = (this.defaultValue ? this.defaultValue : '');}
	});
});
