﻿var productDetailImageGallery = {
	init: function() {
		$("#productDetailGalleryImages").cycle({
			fx: 'fade',
			speed: 'slow',
			timeout: 0,
			pager: '#productDetailGalleryThumbs',
			pagerAnchorBuilder: function(idx, slide) {
				return '<a href="#"><img src="' + slide.src + '" width="109" /></a>';
			}
		});
	}
}

var productDetailVideoGallery = {
	init: function() {
	
		$("#videoGallery .VideoGalleryVideos").cycle({
			fx: 'fade',
			speed: 'fast',
			timeout: 0,
			pager: '#videoGallery .VideoGalleryNav',
			pagerAnchorBuilder: function(idx, slide) {
				return '<li><a href="#" class="Swiss">' + $(".VideoLinkText", slide).text() + '</a></li>';
			}
		});
	}
}

function initializeProductDetail() {
	productDetailImageGallery.init();
	productDetailVideoGallery.init();
}

$(function() {
	initializeProductDetail();
});


