rollover = function()
	{
	document.getElementById('catalogue').onmouseover=function ()
		{
		this.className="hover";
		}
	document.getElementById('catalogue').onmouseout = function ()
		{
		this.className=this.className.replace("hover","");
		}
	}
window.onload=rollover;

