
$(document).ready(function() {
	
	//-------------------------FANCYBOX POPUP---------------------------------
	$('a.dm_BtnBlue').fancybox({
		// default settings
		'padding'		: 0,
		'scrolling'		: 'no',
		'titlePosition'	: 'outside',
		'showCloseButton':true,
		'overlayOpacity': 0.75,
		'overlayColor'	: '#000',
		'titleFormat'	: function(title){
			return '<div id="fancybox-title-inside">'+title+'</div>';
		}
	});
	
	//-------------------------CAROUSEL & GALLERY POPUP---------------------------------
	//init first image
	
	function changeSrc(src){
		var srcCurrent = src;
		var indexSrcCurrent = srcCurrent.indexOf('?');
		srcCurrent = srcCurrent.substring(1,indexSrcCurrent);
		$('.dm_PopupImage img').attr('src','/'+srcCurrent+'?height=390');
	}
	
	$('ul.dm_PopupGallery img').each(function(index){
		$(this).attr('index',(index+1));
	});
	
	var firstIndex = 1;
	var lastIndex = $('ul.dm_PopupGallery li:last img').attr('index');
	
	
	$('ul.dm_PopupGallery li:first img').clone().insertAfter('.dm_PopupArrowLf');
	$('ul.dm_PopupGallery li:first').addClass('cmg_Selected');
	$('.dm_PopupArrowRg').insertAfter('.dm_PopupImage img')
	
	$('.dm_PopupImage img').attr('index',1);
	var srcFirst = $('.dm_PopupImage img').attr('src');
	changeSrc(srcFirst);
	
	$('ul.dm_PopupGallery img').click(function(){
		$('ul.dm_PopupGallery li').removeClass('cmg_Selected');
		$(this).parent().parent().addClass('cmg_Selected');
		$('.dm_PopupImage img').remove();
		$(this).clone().css('display','none').insertAfter('.dm_PopupArrowLf');
		
		var src = $(this).attr('src');
		var index = $(this).attr('index');

		changeSrc(src);
		$('.dm_PopupImage img').fadeIn(2000);
		$('.dm_PopupImage img').attr('index',index);
		//alert('index click:'+index);
		i=index;
		return false;
	});
	
	var i=1;
	i=parseInt(i);
	$('.dm_PopupArrowLf').click(function(){
		$('ul.dm_PopupGallery li').removeClass('cmg_Selected');
		i=i-1;
		var currentIndexImage = $('.dm_PopupImage img').attr('index');
		
		$('.dm_PopupImage img').remove();
		//alert('indice i-left:'+i);
		//alert('current left:'+currentIndexImage);
		if(i>=firstIndex){
			$('ul.dm_PopupGallery li:nth-child('+(currentIndexImage-1)+') img').clone().css('display','none').insertAfter('.dm_PopupArrowLf');
			$('ul.dm_PopupGallery li:nth-child('+(currentIndexImage-1)+')').addClass('cmg_Selected');
			
			var src = $('.dm_PopupImage img').attr('src');
			changeSrc(src);
			$('.dm_PopupImage img').fadeIn(2000);
		}else{
			
			$('ul.dm_PopupGallery li:nth-child('+lastIndex+') img').clone().css('display','none').insertAfter('.dm_PopupArrowLf');
			$('ul.dm_PopupGallery li:nth-child('+lastIndex+'').addClass('cmg_Selected');
			
			var src = $('.dm_PopupImage img').attr('src');
			i=lastIndex;
			changeSrc(src);
			$('.dm_PopupImage img').fadeIn(2000);
		}
		return false;
		
	});
	$('.dm_PopupArrowRg').click(function(){
		i=parseInt(i);
		$('ul.dm_PopupGallery li').removeClass('cmg_Selected');
		i=i+1;
		var currentIndexImage = $('.dm_PopupImage img').attr('index');
		$('.dm_PopupImage img').remove();
		currentIndexImage=parseInt(currentIndexImage);
		//alert('indice i-right:'+i);
		//alert('current right:'+currentIndexImage);
		if(i<=lastIndex){
			$('ul.dm_PopupGallery li:nth-child('+(currentIndexImage+1)+') img').clone().css('display','none').insertAfter('.dm_PopupArrowLf');
			$('ul.dm_PopupGallery li:nth-child('+(currentIndexImage+1)+')').addClass('cmg_Selected');
			
			var src = $('.dm_PopupImage img').attr('src');
			changeSrc(src);
			$('.dm_PopupImage img').fadeIn(2000);
		}else{
			$('ul.dm_PopupGallery li').removeClass('cmg_Selected');
			$('ul.dm_PopupGallery li:nth-child(1) img').clone().css('display','none').insertAfter('.dm_PopupArrowLf');
			$('ul.dm_PopupGallery li:nth-child(1)').addClass('cmg_Selected');
			
			var src = $('.dm_PopupImage img').attr('src');
			i=1;
			changeSrc(src);
			$('.dm_PopupImage img').fadeIn(2000);
		}
		return false;
		
	});
});


