// JavaScript Document

function hoverImageChange (imageid, imagename)
{
	var imagepath = "images/" + imagename;
	document.getElementById(imageid).setAttribute('src', imagepath);
}

function outImageChange (imageid, imagename)
{
	var imagepath = "images/" + imagename;
	document.getElementById(imageid).setAttribute('src', imagepath);
}

function hoverLinkChange (imageid, imagename, linkid)
{
	var imagepath = "images/" + imagename;
	document.getElementById(imageid).setAttribute('src', imagepath);
	document.getElementById(linkid).className = 'active';
}

function outLinkChange (imageid, imagename, linkid)
{
	var imagepath = "images/" + imagename;
	document.getElementById(imageid).setAttribute('src', imagepath);
	document.getElementById(linkid).className = '';
}


