// JavaScript Document

$(document).ready(function(){
	$('a[rel=external], #footer ul li.kids a').attr('target', '_blank');
	
	if (SECAO == "home"){
		TOPO = "topo";
		HEIGHT = 494;
	} else {
		TOPO = "topo_internas";
		HEIGHT = 349;
		
		if (SECAO.substr(0, 8) == "usuarios"){
			SECAO = SECAO.substr(9);
		}
	}
	
	$('#header').media({
		width: '100%',
		height: HEIGHT,
		src: URL_BASE + "swf/" + TOPO + ".swf",
		autoplay: true,
		params: {
			quality: 'high',
			wmode: 'transparent'
			}, 		
		flashvars: {
			URL_BASE: URL_BASE,
			SECAO: SECAO
		}
	});
	
	$('#floater').media({
		width: '285px',
		height: '400px',
		src: URL_BASE + "swf/floater_workshop.swf",
		autoplay: true,
		params: {
			quality: 'high',
			wmode: 'transparent'
			}, 		
		flashvars: {
			URL_BASE: URL_BASE,
			SECAO: SECAO
		}
	});
	
	$('#floater embed').click(function(){
		setTimeout(function(){
			$('#floater').hide();
		}, 1000);
	});
	
	$('#jambinho').media({
		width: '280px',
		height: '142px',
		src: URL_BASE + "swf/jambinho.swf",
		autoplay: true,
		attrs: {
			id:'jambinhoAnim'
		},
		params: {
			quality: 'high',
			wmode: 'transparent'
			}, 		
		flashvars: {
			URL_BASE: URL_BASE
		}
	});
	
	$('#banner-hotsite').media({
		width: '335px',
		height: '372px',
		src: URL_BASE + "swf/chamada_home.swf",
		autoplay: true,
		params: {
			quality: 'high',
			wmode: 'transparent'
			},
		flashvars: {
			URL_BASE: URL_BASE
		}
	});
	
	$('#footer ul li a').not('#footer ul li.kids a').click(function(e){
		e.preventDefault();
		$('#jambinhoAnim').get(0).inicia(($(this).attr('rel')));
	});
	
	$('#footer ul li a')
	.mouseover(function(){
		$('#jambinhoAnim').get(0).pensando($(this).attr('title'));
	})
	.mouseout(function(){
		$('#jambinhoAnim').get(0).limpaBalao();
	});
	
	$('a[rel=lightbox]').lightBox();
	$('a[rel=lightbox-1]').lightBox();
	$('a[rel=lightbox-2]').lightBox();
	$('a[rel=lightbox-3]').lightBox();
	$('a[rel=lightbox-4]').lightBox();
	$('a[rel=lightbox-5]').lightBox();
	$('a[rel=lightbox-6]').lightBox();
	$('a[rel=lightbox-7]').lightBox();
	$('a[rel=lightbox-8]').lightBox();
	$('a[rel=lightbox-9]').lightBox();
	$('a[rel=lightbox-10]').lightBox();
	$('a[rel=lightbox-11]').lightBox();
	$('a[rel=lightbox-12]').lightBox();
	$('a[rel=lightbox-13]').lightBox();
	$('a[rel=lightbox-fachada-1]').lightBox();
	$('a[rel=lightbox-fachada-2]').lightBox();
	$('a[rel=lightbox-fachada-3]').lightBox();
	$('a[rel=lightbox-fachada-4]').lightBox();
	$('a[rel=lightbox-loja-1]').lightBox();
	$('a[rel=lightbox-loja-2]').lightBox();
	$('a[rel=lightbox-loja-3]').lightBox();
	$('a[rel=lightbox-loja-4]').lightBox();
});