// JavaScript Document
var currsection = "";

$(document).ready(function()
{
	/*
	$("#box").hide().fadeTo(0,1, function(){
		$("#box").fadeIn(2000);
	});
	*/
	$(".BackBtn").hover(
		function()
		{
			$(this).parent().parent().append($("<span>&nbsp;"+$(this).attr("alt")+"</span>"));
		},
		
		function()
		{
			$(this).parent().parent().find("span:last").remove(); 	
		}
	);
	
	$(".BackBtn").click(
		function()
		{
			gotoContent("home");	
		}
	);
	$(".LeftItem > a").attr("href","#");
	$(".RightContent > *").hide();
	gotoContent("home");
});

function gotoContent(id)
{
	if(currsection != id)
	{
		currsection = id;
		$(".RightContent > *").hide();
		$("#"+id).fadeIn("slow");
	}
}


