// JavaScript Document

//google tracking code
_uacct = "UA-1032879-1";
urchinTracker();


//small function to make the "Search" text reappear in the text box when you click somewhere else.


$(document).ready(function() {

$("#navBottom a").css("text-decoration","none");
$("#navBottom a").mouseover(function() {
									 
$(this).parent("li").toggleClass("hoverTab");


});

$("#navBottom a").mouseout(function() {

$(this).parent("li").toggleClass("hoverTab");


});


						   $(".searchBar").focus( function() { $(this).val(""); } );
$(".searchBar").blur( function() { $(this).val("Search"); } );
					 
						 });
