var backColor = new Array();

backColor[0] = "#5d0636"
backColor[1] = "#860e2b"
backColor[2] = "#8c871f"
backColor[3] = "#7d1553"
backColor[4] = "#15327d"
backColor[5] = "#000000"

/*  $(document).ready(function(){
	$("#content").mouseover(function(){
		$("#content").stop().animate({opacity: "0.1"}, 350)
	}); */
	
$(document).ready(function(){
	$(".highlight").mouseover(function(){
		$(this).stop().animate({backgroundColor: backColor[0]}, 350)
	});
	$(".highlight").mouseout(function(){
		$(this).fadeIn(350)
		$(this).stop().animate({backgroundColor: backColor[5]}, 350)
	});
	$("#hicase1").click(function(){
	  $("#content").stop().animate({opacity: "0.08"}, 350);
	  $("#case1").stop().fadeIn(1000);
	  $("#case2").hide();
  	  $("#case3").hide();
  	  window.location=$(this).find("a").attr("href"); return false;
	});
	$("#hicase2").click(function(){
	  $("#content").stop().animate({opacity: "0.08"}, 350);
	  $("#case2").stop().fadeIn(1000);
	  $("#case1").hide();
  	  $("#case3").hide();
  	  window.location=$(this).find("a").attr("href"); return false;
	});
	$("#hicase3").click(function(){
	  $("#content").stop().animate({opacity: "0.08"}, 350);
	  $("#case3").stop().fadeIn(1000);
	  $("#case1").hide();
  	  $("#case2").hide();
  	  window.location=$(this).find("a").attr("href"); return false;
	});

/*	$(".navLink").mouseout(function(){
			$(this).stop().animate({opacity: "1.0"}, 350)
	}); */
	
/*	$(".splashlink").click(function(){
			window.location=$(this).find("a").attr("href");return false;
	}); */
	

});