//2010- Script by Harry Humphries harryhum@gmail.com
//Using jQUERY&JQUERYUI

   $(document).ready(function() {
	   $(".tour").click(function() {
		   window.location=$(this).find("a").attr("href");return false;
	   }); 
	   $(".product").click(function() {
		   window.location=$(this).find("a").attr("href");return false;
	   }); 
		$("#tour").hover(
				function () {
					 	$("#tour").css("background","black");
					   $("#tour").animate({"color":"#DAA000"},300);
					   $("#tour").find("a").attr("href").css("color","#DAA000");
				  },
				  function () {
					  $("#tour").css("background","transparent");
					   $("#tour").animate({"color":"#000000"},10);
					   $("#tour").find("a").attr("href").css("color","#000000");
				  }

	);
  });
  
