// service-centers.js

serviceCenters = ({
	initialize: function(){
		$("#locator-text").bind("focus",function(){
			if($(this).attr("value") == "Enter ZIP"){
				$(this).attr("value","")
			}
		}).bind("blur",function(){
			if($(this).attr("value") == ""){
				$(this).attr("value","Enter ZIP")
			}			
		});
	}
});