$(document).ready(function(){
// item-slider #########################################################
handleProductImagesGallery();
});

function handleProductImagesGallery() {
	var int_offset = 0;
	// Nummerate each element to easier calculate the position
	$(".imageGallery li span.image").each(function(i) {
		jQuery(this).data("counter", i);
	});
	// Show (fade in) new image on mouseover
	$(".imageGallery li span.image").mouseenter(function() {
		// Calculate enew offset
		int_offset = jQuery(this).data("counter") * jQuery(".imageGallery .image:first").width() * -1;
		
		// Animate background position
		$(".imageGallery .bigFrame .pictures").stop(true, true);
		$(".imageGallery .bigFrame .pictures").animate({
			left: int_offset + "px"
		}, 600, 'easeOutExpo');

		// Set / Remove 'current' class
		$(".imageGallery li").removeClass("current");
		$(this).parents("li").addClass("current");

		return false;
	});

	// Return to default image on mouseleave
	$(".imageGallery ol").mouseleave(function() {
		// Animate background position
		$(".imageGallery .bigFrame .pictures").stop(true, true);
		$(".imageGallery .bigFrame .pictures").animate({
			left: "0px"
		}, 600, 'easeOutExpo');

		// Remove 'current' class
		$(" .imageGallery li").removeClass("current");
	});
	
	$("a[rel='Gallery']").colorbox();
}


