jQuery(function($) {
	var index = 5;
	var show_index = 10;
	/* 商品詳細画面 imgの切り替え */
	$('div .products_thum_wrap img ').click(function(){
		var img_id = $(this).attr('id');
		
		if($('div.products_main_img div img.'+img_id).attr('class')!=img_id+' active'){
			
			$('div.products_main_img div img.'+img_id).css('z-index',show_index);
			
			$('div.products_main_img div img.show').fadeOut('fast',function(){
				$(this).css('z-index',index);
			});
			$('div.products_main_img div img.'+img_id).fadeIn('fast',function(){
				$('div.products_main_img div img.show').removeClass('show').addClass('no_show');
				$('div.products_main_img div img.'+img_id).removeClass('no_show').addClass('show');		
					
			});
			
			$('div img.no_active').removeClass('no_active').addClass('active');
			$(this).addClass('no_active').removeClass('active');
		}
	});
	
});
