url = document.URL.split('/');
router = new Array();
router.module = url[3];
router.action = url[4];
router.id = url[5];
router.url = url.slice(3, url.length);

$(document).ready(function() {
	$('li a.active').parents('li').children('a').addClass('active');


function productOver()
{
	$('.zoom', this).show();
}

function productOut()
{
	$('.zoom', this).hide();
	
}

$('.product').hover(productOver, productOut);
$('.product').click(function() {
	document.location = $(this).find('a').attr('href');
});
	


	
});
