$(function() {
	$('.fancybox').fancybox({
		ajax: { cache: false },
		onComplete: function() {
			$.fancybox.resize();
		}
	});
	
	$('div.home-product-photo').hover(
		function() {
			$(this).find('div.rollover').stop(true, true).fadeIn(250);
		},
		function() {
			$(this).find('div.rollover').stop(true, true).fadeOut(250);
		}
	);
	
	var endOpacity = 0.4;
	$('#product-photos').cycle({
		activePagerClass: 'selected',
		onPagerEvent: function(idx, slide) {
			$('#thumbnails a:eq(' + idx + ')').siblings().fadeTo(250, endOpacity).end().fadeTo(250, 1.0);
		},
		pager: '#thumbnails',
		pagerAnchorBuilder: function(idx, slide) {
			return '#thumbnails a:eq(' + idx + ')'; 
		},
		slideExpr: 'div.slide',
		timeout: 0
	});
	$('#thumbnails a:not(.selected)').css({'opacity': endOpacity});
	$('#thumbnails a').hover(
		function() {
			if (!$(this).hasClass('selected')) {
				$(this).stop(true, true).fadeTo(250, 1.0);
			}
		},
		function() {
			if (!$(this).hasClass('selected')) {
				$(this).stop(true, true).fadeTo(250, endOpacity);
			}
		}
	);
});
