$(document).ready(function() {
// Store Locator
	$('#storeLocator input.text').focus(function() {           
	 if($(this).val() == 'Enter your Zip Code')
		$(this).val('');
	});
	$('#storeLocator input.text').blur(function() {           
	 if($(this).val() == ''){
	 	$(this).val('Enter your Zip Code');
	 }
	});
// Email Alerts
	$('#newsletter input.text').focus(function() {           
	 if($(this).val() == 'enter your email address')
		$(this).val('');
	});
	$('#newsletter input.text').blur(function() {           
	 if($(this).val() == ''){
	 	$(this).val('enter your email address');
	 }
	});
// Text Alerts
	$('#textAlerts input.text').focus(function() {           
	 if($(this).val() == 'enter your phone number (digits only)')
		$(this).val('');
	});
	$('#textAlerts input.text').blur(function() {           
	 if($(this).val() == ''){
	 	$(this).val('enter your phone number (digits only)');
	 }
	});
});

