$(document).ready(function(){
	$('.headerImage').css('opacity',0.5);
	$('.headerImage').fadeTo(500,1.0);
	$("#zipcode").mouseover(function(){
		if($(this).attr('value') == "Zip Code")
		{
	      $(this).attr('value',"");
		}
    }).mouseout(function(){
    	if($(this).attr('value') == '')
    	{
	      $(this).attr('value',"Zip Code");
    	}
    });
});
