var assetDir = 'assets/';
$("document").ready (function() {
	$("a .nav").mouseover(function()
	{
		doRoll(this.id);
	});
	$("a .nav").mouseout(function()
	{
		doRollOff(this.id);
	});

	$("#ss").cycle();
});


function doRoll(id)
{
	var theImg = assetDir + id + "On.gif";
	var theTarget = $("#" + id).attr("src", theImg);
	
}

function doRollOff(id)
{
	var theImg = assetDir + id + "Off.gif";
	var theTarget = $("#" + id).attr("src", theImg);
}

// powers the drop down pagechanger
function PageChanger(page)
  {
		var b = document.getElementsByTagName('base');
		if (b && b[0] && b[0].href) {
		if (b[0].href.substr(b[0].href.length-1) == '/')
		page = b[0].href + page;
	location.href = page;
	}
	document.NavForm.PullDown.options[0].selected=true;
  }

