// JavaScript Document
function zipCodeFocusInOut (){
	zipCodeFocusIn();
}

function zipCodeFocusOut(){
	jQuery("#fservice").focusout(function() {
		jQuery(this).attr("value", "Zip Code");						 
	});
	
	jQuery("#fstore").focusout(function() {
		jQuery(this).attr("value", "Zip Code");						 
	});
	
	jQuery("#fheaderzipcodeParts").focusout(function() {
		jQuery(this).attr("value", "Zip Code");					 
	});
	
	jQuery("#fheaderzipcodeService").focusout(function() {
		jQuery(this).attr("value", "Zip Code");					 
	});
	
	jQuery("#fsearch").focusout(function() {
		jQuery(this).attr("value", "Search");					 
	});
}

function zipCodeFocusIn(){

	jQuery("#fheaderzipcodeParts").focusin(function() {
		jQuery(this).attr("value", "");					 
	});
	
	jQuery("#fheaderzipcodeService").focusin(function() {
		jQuery(this).attr("value", "");					 
	});
	
	jQuery("#fsearch").focusin(function() {
		jQuery(this).attr("value", "");					 
	});
}
