/*...........................................................................................
SlideShow das páginas internas
...........................................................................................*/

$(document).ready(function(){
	//Configurações HighSlide [Start]
	hs.showCredits = false;
	hs.graphicsDir = '_scripts/highslide/graphics/';
	hs.outlineType = 'rounded-white';
	hs.lang.closeText = '<img src="_imagens/promopontos/btn-fechar.gif" alt="Fechar" />';
	hs.lang.closeTitle = 'Fechar (esc)';
	hs.lang.restoreTitle = 'Clique pra fechar';
	
	//Configurações HighSlide [End]
	
	//SlideShow Cycle [Start]
	$('.slideshow').cycle({
						  
		//Atribuição ao ZOOM [Start]
		before: function(currSlideElement, nextSlideElement, options, forwardFlag) {			
			var i = "_imagens/fotos-shopping/" + $(nextSlideElement).find("img").attr("name");
			$("a#zoom").attr("href", i);
			//alert(i);
		},
		//Atribuição ao ZOOM [End]
		
		//Configurações Cycle [Start]
		timeout: 3000, 
		next:   '#control-next', 
		prev:   '#control-prev'
		//Configurações Cycle [End]
	});
	//SlideShow Cycle [End]
	
	
	//Play & Pause do SlideShow [Start]
	$("#control").click(function(){
		if($(this).attr("src") == "_imagens/icon-pause.gif"){
			$('.slideshow').cycle('resume');
			$(this).attr("src", "_imagens/icon-play.gif");
		} else {
			$('.slideshow').cycle('pause');
			$(this).attr("src", "_imagens/icon-pause.gif");
		};
	});
	//Play & Pause do SlideShow [End]
	
	//ZOOM da imagem do SlideShow [Start]
	$("#zoom").click(function(){
		$('.slideshow').cycle("pause");
		$("img#control").attr("src", "_imagens/icon-pause.gif");
		return hs.expand(this);
	});
	//ZOOM da imagem do SlideShow [End]
	
});