<!--
function MouseOver(imageName)
{
	var img = document.getElementById(imageName);
	//dummy "defaultImg" variable is added to "img"
	img.defaultImg = img.src;
	//we can use our attributes in HTML tags and then use them in JavaScript like "lowsrc".
	//Eventhough it is not W3C standard it can be used in JavaScript.
	img.src = img.lowsrc ? img.lowsrc : img.getAttribute ? img.getAttribute('lowsrc') : img.src;
}
function MouseOut(imageName)
{
	document.getElementById(imageName).src = document.getElementById(imageName).defaultImg;
}
//-->

