jQuery(document).ready(function(){
/* gestione gallery in scheda prodotto */

	jQuery('#gallery_prodotto').each(function(){
		var mainImg = jQuery('.main_img',this).children('img');
		var thumb = jQuery('.thumb a',this);
				mainImg.attr('src',jQuery('.thumb a:first',this).attr('href'));
		thumb.bind('click',function(){
			var href = jQuery(this).attr('href');
			mainImg.fadeOut('normal',function(){
				mainImg.attr('src',href);
				
				mainImg.fadeIn('normal');
			});
			return false;
		});
	});
	
	
	/* stilizzo thumb della gallery prodotto */
	jQuery('#gallery_prodotto .thumb').each(function(i){
		if(((i+1)%5)===0){
			jQuery(this).css({
				paddingRight:'0px'
			}).after('<div class=\'clearer\'>&nbsp;</div>');
		}
		if(((i+1)%5)===1){
			jQuery(this).css({
				paddingLeft:'1px'
			})
		}
	});

	jQuery('#popup a.close').bind(
		'click',
		function(){
			jQuery('#popup').animate({
				top:'-'+(jQuery('#popup').height()+15)+'px'
			},1000)
		}
	);

	
	
});


