$(function(){
//	$('#current_news').load('http://garderobchik.com.ua/news.php',{ 'mode':'current'}, function(){HERN();});
//	$('#future_news').load('http://garderobchik.com.ua/news.php',{ 'mode':'future'}, function(){HERN();});
//	$('#news_block').load('http://garderobchik.com.ua/news.php', function(){HERN();});
	setInterval( function (){
		$('#news_block').fadeOut(2000, function(){
//    	$('#news_block').load('http://garderobchik.com.ua/news.php',function(){HERN();});
   		$('#news_block').fadeIn(2000);
		});
	}, 10000);

	function HERN() {
		$('.news_link').click(function(){
			var ID = $(this).attr('id');
			$('#body').css('opacity','0.1');
			$('#news_to_show').fadeIn('2000', function(){
//				$('#containter_show_news').load('http://garderobchik.com.ua/news.php',{'mode':'show', 'id':ID}, function(){
//					$('.close_link').click(function(){
//						$('#containter_show_news').text('');
//						$('#news_to_show').hide();
//						$('#body').css('opacity','1');
//					});
//				});
			});
		});
	}
	
//	функция для гарееи. меняем  изображение при клике на превьюшке
	var CurrImage = $('.product_thumbnail a');
	var BigImage = $('.picture a');
	CurrImage.bind('click', function(e){
		var BImg = $(".product_picture img.jqzoom");
		e.preventDefault();
		var srcIMG = $(this).attr('id');
		var BigSrcIMG = $(this).find('img').attr('id');
		
		BigImage.fadeOut('slow', function() {
			BImg.attr('src', srcIMG);
			$('.jqzoom').attr('href', 'http://garderibchik.com.ua'+BigSrcIMG);
			$('.jqzoom').attr('target', "_blank");
			BImg.load(function(){
				BigImage.fadeIn();
			});
		});
	});
})
