$(document).ready(function() {
	//flyout menu
	$('ul.flyout li').hover(
	  function(){
	  	$(this).find('ul').css("display", "block");
	  }, function(
	  ){
	  	$(this).find('ul').css("display", "none");
	  }
	);
	
	//this block dims the testimonial in the main part of the page when fly-out menu is activated
	$('ul.flyout').hover(
	  function(){
	  	if (jQuery.support.opacity) {
			$('#homepage .testimonial').fadeTo('slow', 0.4);
		}else{
			$('#homepage .testimonial').css("color", "#bbb");
		}
	  }, function(
	  ){
	  	if (jQuery.support.opacity) {
			$('#homepage .testimonial').fadeTo('slow', 1.0);
		}else{
			$('#homepage .testimonial').css("color", "#eee");
		}
	  }
	);
 	
	//add "current" class to menu links to current page
	$("#leftmenu .top").find("a[href='"+window.location.pathname+"']").each(function(){
	    $(this).parent().addClass("current");
	})
	
	//clear out the "quick tracking" box and make font black
	$("#quick_track input").click(function(){
		if($(this).val().match('Shipment Number'))
		{
			$(this).val("");
			$(this).css("color", "#000");
		}
	})
});
