//var imageSourcePath = "file:///G:/web/Mokador/work/img/";
var imageSourcePath = "http://www.mokador.de/img/";

function mouseOver(imageName)
{
	document.images[imageName].src = imageSourcePath + imageName + "_hl.jpg";
}

//----------------------------------------------------------------------------
// Called whenever mouse has left the given image name.
// Sets the source of the documents image to the "mouse out" image.
//----------------------------------------------------------------------------
function mouseOut(imageName)
{
	document.images[imageName].src = imageSourcePath + imageName + ".jpg";
}
