/*$(function(){
 
          $(".remove_block a").click(function(){
			 $(".big_foto img").attr("src", $(this).attr("href"));	
			 return false;											  
		  });

		  marker = 0;
          sum_step = $(".remove_block a").length;
		  width_shifting_block  = 0;
		  i = 1
			$(".remove_block a img").each(function(){
					if(i > 2)width_shifting_block += $(this).width() + 3;
					i++;
				});
		  width_shifting_block *= -1;
          step = -width_shifting_block/sum_step;
		  $(".right_arr").click(function(){
						
				if(marker==0)
				{
					 marker=1;
					 left_x = ~~$(".remove_block").css("margin-left").replace("px",""); 
					 left_x = left_x - step;
					 if ( left_x > width_shifting_block){
						  $(".remove_block").animate({"margin-left": left_x}, 350, function(){return marker=0;});
					 }else marker=0;
				
				}
			 return false;											  
		  });
			  
          $(".left_arr").click(function(){
										   
				if(marker==0)
				{
					 marker=1;
					 left_x = ~~$(".remove_block").css("margin-left").replace("px",""); 
					 left_x = left_x + step;
		
					 if ( (left_x - step) < 0){
							$(".remove_block").animate({"margin-left": left_x}, 350, function(){return marker=0;});									
					 }else marker=0;
			 
				}							   

			 return false;											  
		  });
});
	*/
	

		   

