// JavaScript Document
//google tracking code
_uacct = "UA-1032879-1";
urchinTracker();



$(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");


});

			
//initialize product page tabs
					$('#tabContainer').tabs(1);	   
					
//small function to make the "Search" text reappear in the text box when you click somewhere else.
						   $(".searchBar").focus( function() { $(this).val(""); } );
$(".searchBar").blur( function() { $(this).val("Search"); } );
					 
						 });
