/*==[ REQUIRES UTILITIES SCRIPT (utilities.js) ]===================*/
if(typeof(UTILITIES) == "object" && UTILITIES.LOADED) {

function hoverThumb(el, show)
{
	var sku = el.parentNode.parentNode.parentNode.id;

	var pos = UTILITIES.getObjXY(el);

	var row  = document.getElementById(sku);
	var thumb = document.getElementById(sku + "_thumb");

	if(show && UTILITIES.ENV.BROWSER == "IE" && UTILITIES.ENV.VERSION < 7)
	{
		row.style.backgroundColor = "#fcd127";
		thumb.style.top  = pos[1] - 478 + "px";
		thumb.style.left = pos[0] - 475 + "px";
		thumb.style.display = "block";
	}
	else if(show)
	{
		row.style.backgroundColor = "#fcd127";
		thumb.style.top  = pos[1] - 350 + "px";
		thumb.style.left = pos[0] - 125 + "px";
		thumb.style.display = "block";
	}
	else
	{
		row.style.backgroundColor = "";
		thumb.style.display = "none";
	}
}

} // End of conditional inclusion block [requires utilities.js]
