//Script Version: 2.0
//Author: Explorers
//Date: 06 August 2006

function mouseover(id, imageUrl)
{
    document.getElementById(id).src = imageUrl;
//	document.getElementById(id).style.background =  imageUrl;
//	document.getElementById(id).style.backgroundRepeat = "repeat-x";
//	document.getElementById(id).style.color = "Green";
//	document.getElementById(id).style.cursor = "Hand";
}

function mouseout(id, imageUrl)
{
	document.getElementById(id).src = imageUrl;
//	document.getElementById(id).style.background =  imageUrl;
//	document.getElementById(id).style.color = "Black";
//	document.getElementById(id).style.cursor = "default";
}

function PageSelectMouseOver(id)
{
    document.getElementById(id).style.backgroundColor = '#aaeeaa';
}

function PageSelectMouseOut(id)
{
    document.getElementById(id).style.backgroundColor = '#ffffff';
}



