
document.observe('dom:loaded', function() {


	 var alltags=document.all? document.all : document.getElementsByTagName("*");
	 for (i=0; i<alltags.length; i++)	{
	 
   		if (alltags[i].className=='dealerrow')	{
				alltags[i].onclick = function () { location.href='?vestigingen&vestiging='+ this.getAttribute('rel'); }
				alltags[i].onmouseover = function () {this.style.backgroundColor = pageStyle; this.style.color = '#000';}
				alltags[i].onmouseout = function () {this.style.backgroundColor = ''; this.style.color = '#d01479';}
			 }

   	
		 else if (alltags[i].className=='productContainer')	{
				alltags[i].onclick = function () {  location.href=this.getAttribute('rel'); }
			 }


		}

}
);

 