$(document).ready(function(){
	
	// show product images
	$('#productinfoimages a').fancybox({
		overlayOpacity: 0.8,
		overlayColor: '#000'
	});

	// show shipping costs
	$("a.shippingcosts, a.popup").fancybox({
		'width'						: 800,
		'height'					: '75%',
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'type'						: 'iframe',
		overlayOpacity: 0.8,
		overlayColor: '#000'
	});

	// show image carousel
	var images = $('a.carousel');
	var carousel = $('#carousel');
	if (images.length) {
		images.appendTo(carousel);
		carousel.show();
		carousel.CloudCarousel({	
				speed: 0.1,
				xRadius: 150,
				xPos: 250,
				yPos: 30,
				mouseWheel: true,
				buttonLeft: $("#carousel-left"),
				buttonRight: $("#carousel-right"),
				titleBox: $("#title-text")
			});
		// show big carousel images
		$('#carousel a').fancybox({
			overlayOpacity: 0.8,
			overlayColor: '#000'
		});
	}
	
});

