// JavaScript Document
/* for Fix png*/
/*JS for input when click delete text */	 

window.onload = function () {
	
	jQuery(function($) { /* to avoid conflicts with prototype on pages with web forms for marketers forms $ */ 
		
			$(".search").focus(function() {
				if($(this).val() == "Sample Search Text") {
				$(this).val("");
			}
			});
			$(".search").blur(function() {
				if($(this).val() == "") {
				$(this).val("Sample Search Text");
				}
			});
			
	});

}
