/*
*	The slides hwo for product pages
*/

jQuery(document).ready(function() {
	var thumbListLinks = $('#photoThumbs li a');
	var mainPhoto = $('#photoShow #mainPhoto img');
	//////
	//****************to implement the zoom software as well******************************
	var zoomPhoto = $('#photoShow #mainPhoto a');
	//////
	//****************to implement the zoom software as well******************************
	$(thumbListLinks).each(function(i){

		$(this).click(function(){
			if($('#photoThumbs li').hasClass('active')){
				$('#photoThumbs li').removeClass('active');
			}
			$(thumbListLinks[i]).parent().addClass('active');
			$(mainPhoto).fadeOut(500, function(){
				$(mainPhoto).attr('src', $(thumbListLinks[i]).attr('href'));
				$(mainPhoto).attr('alt', $(thumbListLinks[i]).attr('title'));
				//////
				//****************to implement the zoom software as well******************************
				$(zoomPhoto).attr('href', $(thumbListLinks[i]).attr('href'));
				//****************to implement the zoom software as well******************************				
				//////
				$('#photoShow #mainPhoto p.caption span').fadeOut(500, function(){
					$('#photoShow #mainPhoto p.caption span').html($(thumbListLinks[i]).attr('title')).fadeIn(500)
				});
			}).fadeIn(500);
			return false;
		});
	});
	
});
