function banner(target, action)
{
	if (action == "over")
		target.id = "banner-over";
	else
		target.id = "banner";
}

function mmLink(target, level, action)
{
	if (action == "over")
		target.className = "item"+level+"-over";
	else
		target.className = "item"+level;
}

function thumbWindow(target, action)
{
	if (action == "over")
		target.className = "thumbWindow-over";
	else
		target.className = "thumbWindow";
}
function preloadImages()
{
	var image;
	for (var i = 0; i < slides.length; i++)
	{
		image = new Image();
		image.src = "/photos/"+slides[i]+".jpg";
	}
}
