/*

GZIP CONTENT DELIVERY
Copyright 2010 Fat Publisher

All rights reserved. Republication, redistribution,
replication or use of Fat Publisher content / scripting
is strictly prohibited without the prior written consent of Fat Publisher.

www.fatpublisher.com.au

Content generated : 12:34:15 pm 09 September 2010

*/

function attach_listing_click()
{
	var imgs = document.getElementsByTagName("A");
	for (var e = 0; e < imgs.length; e ++) {
		if (imgs[e].className && imgs[e].className.search(/moreinfo/) != -1) {
			var parent = imgs[e];
			while (parent.className != "product") {
				parent = parent.parentNode;
			}
			parent.style.cursor = "pointer";
			parent.onclick = new Function("document.location.href = '" + imgs[e].href + "'");
			parent.onmouseover = function() { 
				this.className = "product_over"; 
			};
			parent.onmouseout = function() { 
				this.className = "product"; 
			};
			imgs[e].parentNode.href = "#";
		}		
	}
}

add_to_onload("attach_listing_click()");