/*jQuery(function(){ 
	// find all the input elements with title attributes
	jQuery('input[title!=""]').hint();
});*/

jQuery(function(){
	// find input element with the class name search-field-text with title attributes
	jQuery('.zip_input').hint();
	jQuery('.zip_input_mobile').hint();
	
	// show/hide toggle for mobile search
	$("div.form_mobile_wrapper").hide();
	//$("form.form_mobile").hide();
	$("#navSearch").show();
	
	$('#navSearch').click(function(){
	$("div.form_mobile_wrapper").toggle();
	//$("form.form_mobile").toggle();
	});
});


