$(document).ready(function(){ 	$("ul.gl-subnav").parent().append("<span></span>"); //Only shows drop down trigger when js is enabled - Adds empty span tag after ul.gl-subnav		$("ul.gl-topnav li span").click(function() { //When trigger is clicked...				//Following events are applied to the gl-subnav itself (moving gl-subnav up and down)		$(this).parent().find("ul.gl-subnav").slideDown('fast').show(); //Drop down the gl-subnav on click 		$(this).parent().hover(function() {		}, function(){				$(this).parent().find("ul.gl-subnav").slideUp('slow'); //When the mouse hovers out of the gl-subnav, move it back up		}); 		//Following events are applied to the trigger (Hover events for the trigger)		}).hover(function() { 			$(this).addClass("gl-subhover"); //On hover over, add class "gl-subhover"		}, function(){	//On Hover Out			$(this).removeClass("gl-subhover"); //On hover out, remove class "gl-subhover"	});$('#SearchZip_header').click(function(){    if($(this).val()=='Enter Postal Code'){        $(this).val('');    }});$('#SearchZip_header').blur(function(){    if($(this).val()==''){        $(this).val('Enter Postal Code');    }});$('#SearchZip_left').click(function(){    if($(this).val()=='Enter Postal Code'){        $(this).val('');    }});$('#SearchZip_left').blur(function(){    if($(this).val()==''){        $(this).val('Enter Postal Code');    }});$('#SearchZip_offer').click(function(){    if($(this).val()=='Enter Postal Code'){        $(this).val('');    }});$('#SearchZip_offer').blur(function(){    if($(this).val()==''){        $(this).val('Enter Postal Code');    }});$('#SearchZip_offer2').click(function(){    if($(this).val()=='Enter Postal Code'){        $(this).val('');    }});$('#SearchZip_offer2').blur(function(){    if($(this).val()==''){        $(this).val('Enter Postal Code');    }}); });

