var fadingLinkOpacity = 0.75;

$(function()
{
	imageRota('#image-rota', 4000, 2000);

	var productCodeLinks = $('.product-codes a');
	productCodeLinks.hover(function()
	{
		var index = productCodeLinks.index(this);
		$('#product-list li:nth-child(' + (index + 1) + ') img').addClass('product-hover');
	}, function()
	{
		var index = productCodeLinks.index(this);
		$('#product-list li:nth-child(' + (index + 1) + ') img').removeClass('product-hover');
	});
});


