var pos = [57,169,281.5,397,517,630,740];
var links = ["index.php","calendar.php","news.php","dwnld.php","pics.php","contact.php","about.php"];
window.addEvent("domready",function()
{
	$("nav").getChildren().each(function(e,i)
	{
		e.setProperty("onmouseover","moveHighlight("+i+")");
	});
	var current = ""+document.location;
	$("nav").set("tween",{duration:850});
	var i = 0;
	for(; i<links.length; i++)
		if(current.indexOf(links[i])!=-1)
			break;
	moveHighlight(i);
});
window.addEvent("resize",function()
{
	document.body.style.height = window.innerHeight+'px';
});
function light(slhs,fbla)
{
	$("logo").setProperty("src","img/logo/slhs."+slhs+".fbla."+fbla+".png");
}
function moveHighlight(i)
{
	$("nav").tween("backgroundPosition",pos[i]-47.5);
}