
window.onload = function ()
{
	$('#'+activeone).addClass("tiveleft");
	$('#'+activetwo).addClass("tive");
	$('#'+activethree).addClass("tiveright");
}
function navover(one,two,three)
{
	if(one != activeone)
	{
		$('#'+one).addClass("tiveleft");
		$('#'+two).addClass("tive");
		$('#'+three).addClass("tiveright");
	}
}
function navout(one,two,three)
{
	if(one != activeone)
	{
		$('#'+one).removeClass("tiveleft");
		$('#'+two).removeClass("tive");
		$('#'+three).removeClass("tiveright");
	}
}
