$(document).ready(function(){
	
	$('#products li:nth-child(3n-1)').css('margin','0 30px');
	$('#products li:nth-child(4)').css('margin','0');
	$('#products li:nth-child(5)').css('margin','0 30px');
	$('#products li:nth-child(6)').css('margin','0');
	
	$('#sidebar-left img').not('img:first').addClass('small');
	
	$('#sidebar-left img').eq(-2).css('display','none');
	$('#sidebar-left img').eq(-3).css('display','none');
		
	$("#sidebar-left img.small").mouseover(function() { 
		var src = $(this).attr("src");
		$('#sidebar-left img:first').attr("src", src);
    })
	
	$('#slides').slides({
		preload: true,
		preloadImage: 'img/loading.gif',
		play: 5000,
		pause: 2500,
		generatePagination: false,
		hoverPause: true
	});
	
    /*$("#sidebar-left img.small").mouseout(function() {
		var src = $('#sidebar-left img.small:last').attr("src");
		$('#sidebar-left img:first').attr("src", src);
    });*/
	
	$("#slides").hover(function () {
		$(this).find('.next, .prev').fadeIn();
	},function () {
		$(this).find('.next, .prev').fadeOut();
	});
	
	$('#workshop a').each(function() {
        $(this).attr('rel','fancybox'); 
    });
	
	$("#workshop a[rel$=fancybox]").fancybox({
		'imageScale': true, 
		'overlayShow': true, 
		'overlayColor': '#999',
		'scrolling' : 'no',
		'overlayOpacity': 0.9,
		'titlePosition' : 'over',
		'padding': 0,
	});

});
