//<![CDATA[
window.addEventListener ? window.addEventListener('load',listingScroll,false) : window.attachEvent('onload',listingScroll);

function listingScroll()
{
	var e = document.getElementById("products_listing");
	var el = e.getElementsByTagName("div");
	var pos = 0;
	for (i=0; i<el.length; i++)
	{
		if (el[i].className == "thumb")
			pos++;
		else if (el[i].className == "thumbCurrent")
			break;
	}

	e.scrollTop = parseInt(pos/3) * 180;
}
//]]>