$(document).ready(function()
{
	$("#navigation ul li").hover(function(){
		$(this).find("ul").show();
	},
	function(){
		$(this).find("ul").hide();
	});
	
	if ( parseInt($(document).height()) > parseInt($(window).height()) )
		$("#foot").css("position", "relative");
		
	$("#slideshow .right ul li a").hover(
		function () 
		{
			$("#slideshow .right ul li a").removeClass("active");
			$(this).addClass("active");
			
			switch ( this.id )
			{
				case "point1" : $("#slideshow").css("background", "url(/shared/images/start1.jpg)"); break;
				case "point2" : $("#slideshow").css("background", "url(/shared/images/start2.jpg)"); break;
				case "point3" : $("#slideshow").css("background", "url(/shared/images/start3.jpg)"); break;
			}
		},
		function () {}
	);
});
