window.onload = function()
{
	var a = document.getElementById("onlineshop");
	a.onmouseover = (function()
	{
		return function(a)
		{
			document.getElementById("onlineshop").src="images/spf/onlineshopover.jpg";
		}
	})(a);
	a.onmouseout = (function()
	{
		return function(a)
		{
			document.getElementById("onlineshop").src="images/spf/onlineshop.jpg";
		}
	})(a);
}