$(document).ready(function() {
	$('#search').each(function() {
		$(this).focus(function() {
			if($(this).val() == "Enter a zip code...") {
		  		$(this).val("");
			}
		});
	});
	$('#search').each(function() {
		$(this).blur(function() {
			if($(this).val() == "") {
		  		$(this).val("Enter a zip code...");
			}
		});
	});
	
	$('#newsletter_signup').focus(function() {
		if($(this).val() == "Enter your email address") {
	  		$(this).val("");
		}
	});
	$('#newsletter_signup').blur(function() {
		if($(this).val() == "") {
	  		$(this).val("Enter your email address");
		}
	});
	
	$("a.spec_sheet").each(function(){
		$(this).bind ("click", function(){
			var docTitle = $(this).html();
			_gaq.push(['_trackEvent', 'Download', 'Information Sheet', docTitle]);
			setTimeout('window.location="' + this.href + '"', 400);
			return false;
		});
	});
	$("a.cad_drawing").each(function(){
		$(this).bind ("click", function(){
			_gaq.push(['_trackEvent', 'Download', 'CAD Drawing', this.href]);
			setTimeout('window.location="' + this.href + '"', 400);
			return false;
		});
	});
});
