	// JavaScript Document
	var flashvars_vitrine = {};
	var params_vitrine = {wmode : "transparent"};
	var attributes_vitrine = {};
	
	swfobject.embedSWF("swf/vitrine.swf", "vitrine_swf", "1002", "384", "2.0.0","expressInstall.swf", flashvars_vitrine, params_vitrine, attributes_vitrine);
	
	function adj () {
		
		$("#promocao a").fancybox({
			'type'				: 'iframe',
			'width'				: 490,
			'height'			: 400,
			'frameWidth'		: 490,
			'frameHeight'		: 500,
			'padding'			: 0,
			'margin'			: 0,
			'scrolling'   		: 'no',
			'titleShow'		:false
		});
			
		
		$('.fotos li a').fancybox({
			'overlayShow' : false,
			'speedIn'		:	700, 
			'speedOut'		:	500, 
			'transitionIn' : 'elastic',
			'transitionOut' : 'elastic',
			'titleShow'		:false
		});
		
		
		$.ajax({
			type:"GET",
			url:"xml/promo.xml",
			dataType:"xml",
			success:function(xml){
				var titulo = $(xml).find("titulo").text();
				var descricao = $(xml).find("descricao").text();
				
				$('#promocao h4').html(titulo);
				$('#promocao p').html(descricao);
				$('#promocao a').attr("href","faleconosco.html#"+titulo);
			}
		})
		
		$.post('blackFish/lista_fotos_home.php', {}, function(data){
			var arquivos;
			arquivos = data.split(',');
			var i, num_arquivo;
			var ul = '';
			var lista_arquivos = Array('images/fundo_fotos_home.jpg', 'images/fundo_fotos_home.jpg', 'images/fundo_fotos_home.jpg', 'images/fundo_fotos_home.jpg', 'images/fundo_fotos_home.jpg', 'images/fundo_fotos_home.jpg', 'images/fundo_fotos_home.jpg', 'images/fundo_fotos_home.jpg', 'images/fundo_fotos_home.jpg', 'images/fundo_fotos_home.jpg', 'images/fundo_fotos_home.jpg', 'images/fundo_fotos_home.jpg');
			
			for(i=0;i<arquivos.length;i++)
			{
				var extensao = arquivos[i].substr(arquivos[i].length-3,arquivos[i].length);
				
				if(extensao.toUpperCase() == 'JPG')
				{
					num_arquivo = arquivos[i].split('_');
					
					if(num_arquivo[1] != "undefined")
					{
						lista_arquivos[num_arquivo[1].substr(0,num_arquivo[1].length-4)] = "images/Fotos_Home/p/imagem_" + num_arquivo[1].substr(0,num_arquivo[1].length-4)+".jpg";
					}
				}
				
				
			}
			
			$('.fotos').empty();
			
			for(i=0;i<12;i++)
			{
				var imagem = lista_arquivos[i].replace("/p/","/g/");

				$('<li><a href="'+imagem+'" >&nbsp;</a></li>').appendTo('.fotos');
				$('.fotos :last').css('background-image','url('+ lista_arquivos[i]+')');
				//$("<li><a href='"+lista_arquivos[i].replace("/p/","/g/")+"' ><img alt='Fotos loja' src='"+lista_arquivos[i]+"' /></a></li>").appendTo('.fotos');
			}
		
			
			$('.fotos li img').each(function(){
				$(this).css("margin-top",45-$(this).height()/2);
				$(this).css("margin-left",45-$(this).width()/2);
			});
			
			
			$('.fotos li a').fancybox({
				'overlayShow' : false,
				'speedIn'		:	700, 
				'speedOut'		:	500, 
				'transitionIn' : 'elastic',
				'transitionOut' : 'elastic',
				'titleShow'		:false
			});
		})
	}
	
	

