// Rollover javascript koodi
window.onload = rolloverinit;

function rolloverinit()
{
	for(var i=0; i<document.images.length; i++)
	{
		if (document.images[i].parentNode.tagName == "A")
		{
			setuprollover(document.images[i]);
		}
	}
}

function setuprollover(thisImage)
{
	thisImage.outimage = new Image();
	thisImage.outimage.src = thisImage.src;
	thisImage.onmouseout = rollout;

	thisImage.overimage = new Image();
	thisImage.overimage.src = "images/" + thisImage.id + "O.jpg";
	thisImage.onmouseover = rollover;
}

function rollover()
{
	this.src = this.overimage.src;
}

function rollout()
{
	this.src = this.outimage.src;
}