function navigation_show(id) {
	$("ul.navigation a").css({'color':'#54301A', 'background':'#eaeaea', 'cursor':'pointer'});
	$("#navigation_"+id).css({'color':'#acacac', 'background':'#54301A', 'cursor':'default'});
	$("#contador_atual").html(id);
	// contador_atual
}

function cria_titulo(target, titulo, autor) {
	var so = new SWFObject("flash/titulo.swf", "main", "100%", "100%", "9,0,0,0", "#eaeaea", true);
	so.addVariable("titulo_asp", titulo);
	if (autor != "") {
		so.addVariable("autor_asp", "POR " + autor);
	}
	so.addParam("wmode", "transparent");
	so.write(target);
}

function menu(obj,fade){

	if(fade == 0){
		$("a.img").fadeOut();
	}else{
		obj.find("+a.img").fadeIn();
	}
}

function limpa(){
	if(ativo == 0){
		$("a.img").fadeOut();
		$("#menu img").fadeOut();
		$("#menu").css({'height':'46px'});
		lembrete = "";
	}
}

var lembrete="";
var ativo = 0;
var velocidade = 300;
var ativo = 0;
var obj, obj_confirma;
var cont = 0;

$(document).ready(function() {
	
	$("#close-alert").click(function(){
		$("#alerta").remove();
		return false;	
	});
						   
	$("#cadastro-lightbox").validate();
						   
	$("#sign-news a").click(function(){
		$("#lightbox").css({display: "block"});
		return false;
	});
	
	$("#close").click(function(){
		$("#lightbox").css({display: "none"});
		return false;				   
	});


	// home - areas_destaque

	if($('#areas_destaque li.cinema h4').height()>=$('#areas_destaque li.news h4').height() && $('#areas_destaque li.cinema h4').height()>=$('#areas_destaque li.revista h4').height()){
		$('#areas_destaque li.news h4').css({'padding-top': 5+$('#areas_destaque li.cinema h4').height()/2-$('#areas_destaque li.news h4').height()/2, 'padding-bottom': 8+$('#areas_destaque li.cinema h4').height()/2-$('#areas_destaque li.news h4').height()/2});
		$('#areas_destaque li.revista h4').css({'padding-top': 5+$('#areas_destaque li.cinema h4').height()/2-$('#areas_destaque li.revista h4').height()/2, 'padding-bottom': 8+$('#areas_destaque li.cinema h4').height()/2-$('#areas_destaque li.revista h4').height()/2});
	} else if($('#areas_destaque li.news h4').height()>=$('#areas_destaque li.cinema h4').height() && $('#areas_destaque li.news h4').height()>=$('#areas_destaque li.revista h4').height()){
//					$('#areas_destaque li.cinema h4').css({'height':$('#areas_destaque li.news h4').height(), 'padding-top': 5+$('#areas_destaque li.news h4').height()-$('#areas_destaque li.cinema h4').height()});
		$('#areas_destaque li.cinema h4').css({'padding-top': 5+$('#areas_destaque li.news h4').height()/2-$('#areas_destaque li.cinema h4').height()/2, 'padding-bottom': 8+$('#areas_destaque li.news h4').height()/2-$('#areas_destaque li.cinema h4').height()/2});
		$('#areas_destaque li.revista h4').css({'padding-top': 5+$('#areas_destaque li.news h4').height()/2-$('#areas_destaque li.revista h4').height()/2, 'padding-bottom': 8+$('#areas_destaque li.news h4').height()/2-$('#areas_destaque li.revista h4').height()/2});
	} else if($('#areas_destaque li.revista h4').height()>=$('#areas_destaque li.cinema h4').height() && $('#areas_destaque li.revista h4').height()>=$('#areas_destaque li.news h4').height()){
		$('#areas_destaque li.cinema h4').css({'padding-top': 5+$('#areas_destaque li.revista h4').height()/2-$('#areas_destaque li.cinema h4').height()/2, 'padding-bottom': 8+$('#areas_destaque li.revista h4').height()/2-$('#areas_destaque li.cinema h4').height()/2});
		$('#areas_destaque li.news h4').css({'padding-top': 5+$('#areas_destaque li.revista h4').height()/2-$('#areas_destaque li.news h4').height()/2, 'padding-bottom': 8+$('#areas_destaque li.revista h4').height()/2-$('#areas_destaque li.news h4').height()/2});
	}

//				$("#menu").css({'background':'red'});

	$("a.img").hide();
	$("#menu img").hide();
	
	$("a.link").hover(
	function(){
	ativo = 1;
	if(lembrete != $(this).text()){
		$("#menu").css({'height':'340px'});
		$("a.img").fadeOut();
		$("#menu img").fadeOut();
		$(this).find("+a.img").fadeIn();
		$(this).find("img").fadeIn();
		lembrete = $(this).text();
	}//if
	},
	function(){

	});

	$("#menu").hover(
	function(){
		ativo = 1;
	},
	function(){
		ativo = 0;
		window.setTimeout(function() {
			limpa();
			}, 300);
	});

	$('#news_save p.save_1').css({'margin-top': (51-$("#news_save p.save_1").height())/2});
	$('#news_save p.save_2').css({'margin-top': (51-$("#news_save p.save_2").height())/2});
	$('#news_save p.save_3').css({'margin-top': (51-$("#news_save p.save_3").height())/2});
	$('#news_save p.save_4').css({'margin-top': (51-$("#news_save p.save_4").height())/2});
	$('#news_save p.save_5').css({'margin-top': (51-$("#news_save p.save_5").height())/2});
	
	$("#reg-promo").click(function(){
		if($("#lojas-promo").is(':not(:hidden)')){
			return false;
		}else{
		$("#regulamento-promo").css({display: 'block'});
		}
		return false;	
	});
	
	$("#lojas-participantes").click(function(){
		if($("#regulamento-promo").is(':not(:hidden)')){
			return false;
		}else{
		$("#lojas-promo").css({display: 'block'});
		}
		return false;	
	});
	
	$("a.close").click(function(){
		$(this).parent().css({display: 'none'});
		return false;	
	});
	
});