// JavaScript Document
jQuery(document).ready(function(){
	
	images = new Object();
	images.length = 3;
	images[0] = "/images/palkkibg_light.jpg";
	images[1] =	"/images/palkkibg2.jpg";
	images[2] = "/images/palkkibg_reverse.jpg";
	
	var site = window.location.pathname.toLowerCase();
	
	if(site.charAt(site.length-1) != "/") {
		site = site + "/";
	}
	
	$("td.palkki").mouseover(function(e)
	{
		$(this).css({"font-weight" : "bolder", "background-image" : "url(/images/palkkibg_light.jpg)"});
	});
	$("td.palkki").mouseleave(function()
	{
		if($("a", this).attr("href") != site)
		{
			$(this).css({"font-weight" : "normal", "background-image" : "url(/images/palkkibg2.jpg)"});
		}
		else $(this).css({"background-image" : "url(/images/palkkibg_reverse.jpg)"});
	});

	$("td.oikea").mouseover(function(e)
	{
		$(this).css({"font-weight" : "bolder", "background-image" : "url(/images/palkkibg_light.jpg)"});
	});
	$("td.oikea").mouseleave(function()
	{
		if($("a", this).attr("href") != site)
		{
			$(this).css({"font-weight" : "normal", "background-image" : "url(/images/palkkibg2.jpg)"});
		}
		else $(this).css({"background-image" : "url(/images/palkkibg_reverse.jpg)"});
	});
	
	switch(site)
	{
		case "/etusivu","/etusivu/" : 
			$("#1").css({"border-bottom-width" : "0", 
						 "background-image" : "url(/images/palkkibg_reverse.jpg)",
						 "border-left-width" : "1",
						 "font-weight" : "bolder" });
		break;
		
		case "/henkilokunta","/henkilokunta/" : 
			$("#3").css({"border-bottom-width" : "0", 
						 "background-image" : "url(/images/palkkibg_reverse.jpg)",
						 "font-weight" : "bolder" });
		break;
		
		case "/toiminta", "/toiminta/" : 
			$("#4").css({"border-bottom-width" : "0", 
						 "background-image" : "url(/images/palkkibg_reverse.jpg)",
						 "font-weight" : "bolder" });
		break;
		
		case "/galleria", "/galleria/" : 
			$("#5").css({"border-bottom-width" : "0", 
						 "background-image" : "url(/images/palkkibg_reverse.jpg)",
						 "font-weight" : "bolder" });
		break;
		
		case "/hevoset", "/hevoset/" : 
			$("#6").css({"border-bottom-width" : "0", 
						 "background-image" : "url(/images/palkkibg_reverse.jpg)",
						 "font-weight" : "bolder" });
		break;
		
		case "/koirat", "/koirat/" : 
			$("#7").css({"border-bottom-width" : "0", 
						 "background-image" : "url(/images/palkkibg_reverse.jpg)",
						 "font-weight" : "bolder" });
		break;
		
		case "/yhteystiedot", "/yhteystiedot/" : 
			$("#8").css({"border-bottom-width" : "0", 
						 "background-image" : "url(/images/palkkibg_reverse.jpg)",
						 "border-right-width" : "1",
						 "font-weight" : "bolder" });
		break;
	}

	$("#1").click(function(){ location.href="/etusivu/";	});
	$("#3").click(function(){ location.href="/henkilokunta/";	});
	$("#4").click(function(){ location.href="/toiminta/";	});
	$("#5").click(function(){ location.href="/galleria/";	});
	$("#6").click(function(){ location.href="/hevoset/";	});
	$("#7").click(function(){ location.href="/koirat/";	});
	$("#8").click(function(){ location.href="/yhteystiedot/";	});
})
