$(document).ready(function(){	
	$('ul#productImages img').each(function(){
		var curWidth = $(this).width();
		var curHeight = $(this).height();
		var contWidth = "507";
		var contHeight = "324";
		$(this).css({
			"margin-left": contWidth/2 - curWidth/2,
			"margin-top": contHeight/2 - curHeight/2
		});
	});
	$('ul#productImages').innerfade({
		speed: 1000,
		timeout: 5000,
		type: 'sequence',
		containerheight: '324px'
    });
	$('ul.productImagesLarge').innerfade({
		speed: 1000,
		timeout: 5000,
		type: 'sequence',
		containerheight: '492px'
    });
});