/*jQuery(document).ready(function() {
	$(".puff input").focus(function() {
		var cityInput = $(this);
		var cityValue = cityInput.attr("value");
		jQuery.data(cityInput, "input", { on: "", off: cityValue });
		cityInput.attr("value", jQuery.data(cityInput, "input").on);
		$(this).blur(function() {
			cityInput.attr("value", jQuery.data(cityInput, "input").off);
		});
	});
});*/

jQuery(document).ready(function() {
	var elem = $(".puff input");
	var store = elem.attr("value");
	
	elem.focus(function() {
		if ($(this).attr("value") == "City of Interest") {
			$(this).attr("value", "");
		}
	});
	elem.blur(function() {		
		if ($(this).attr("value") == "") {
			$(this).attr("value", store);
		}		
	});
});
