function init_links()
{
	$('Armatura').onmouseover=
	$('Zeglarskie').onmouseover=
	$('Skrawajace').onmouseover=
	$('Zlaczne').onmouseover=function()
	{
		this.onclick=function()
		{
			document.location.href=this.getElementsByTagName('a')[0].href;
		}
		Element.addClassName(this,'active');
		this.img=this.getElementsByTagName('img')[0];
		this.img.oSrc=this.img.src;
		if(!this.img.nSrc) this.img.nSrc=this.img.oSrc.replace('_off','_on');
		this.img.src=this.img.nSrc;
		
		this.onmouseout=function()
		{
			this.img.src=this.img.oSrc;
			Element.removeClassName(this,'active');
		}
	}
}