$(document).ready(function () {
	
	SEARCH_ENVIRO = $('#searchSite').val();
	$('#searchSite').focus(function() {
		if($(this).val() == SEARCH_ENVIRO) {
			$(this).val("");
		}
	}).blur(function () {
		if($(this).val() == "") {
			$(this).val(SEARCH_ENVIRO);
		}
	});

	$('#nav>li').hover(
		function() { 
			$(this).find("ul").show();
			$(this).addClass('hoverOverDropDown');
		},
		function() {
			$('#nav>li').removeClass('hoverOverDropDown');
			$("#nav>li>ul").hide();
		}
	);

	$(".copy p:first-child").addClass("firstcopypara");
	
	$(".copy tr:nth-child(even)").addClass("alt");
	$('.copy tr').hover(
		function() { $(this).addClass('hoverRow'); },
		function() { $(this).removeClass('hoverRow'); }
	);


});