// JScript source code
function SwapImage(image,imgSrc){
	image.src=imgSrc;
	}
		
function HighLightMenuItem(MenuItem){
	MenuItem.style.color = "#ffff00";
	//MenuItem.style.backgroundColor = "rgb(204, 204, 204)";
	MenuItem.style.font = "12pt Century Gothic, Arial Rounded MT Bold, Arial";
	MenuItem.style.fontWeight = "Bold";
    MenuItem.style.textDecoration = "underline";
    //MenuItem.style.color = "rgb(255, 0, 0)";
	}

function UnHighLightMenuItem(MenuItem){
	MenuItem.style.color = "#ffffff";
	//MenuItem.style.backgroundColor = "rgb(204, 204, 204)";
	MenuItem.style.font = "12pt Century Gothic, Arial Rounded MT Bold, Arial";
	MenuItem.style.fontWeight = "Bold";
    MenuItem.style.textDecoration = "none";
    //MenuItem.style.color = "rgb(0, 0, 0)";
	}


