$(function() {
	// Mostrar/esconder subitens no menu do cabeçalho
	$("#header .links li").hover(
		function(){
			$(this).children("ul").stop(true,true).hide().slideDown();
		},
		function(){
			$(this).children("ul").stop(true,true).slideUp();
	});

	//Mostrar modal de mais informações e item manual na cotação
	$(".tabela .link, .informeManual").click(function(){
		$("body").append("<div id=\"fundoModal\" />");
		$("#fundoModal").fadeIn()
			.css({"width": $(window).width() + "px", "height": $(document).height() + "px"});
		var modal = $(".modal");
		$(modal).fadeIn()
			.css({"top": $(document).scrollTop() + 100 + "px", "left": (($(window).width() - $(modal).outerWidth()) / 2) + "px"});
		//se o lightbox for de mais informações, mostrar o conteúdo de acordo com o clicado
		if ($(this).hasClass("link")) {
			var conteudo = $(this).parent().attr("class");
			$(modal).children("div").hide();
			$(modal).children("." + conteudo).show();
		}
		return false;
	});

	//Fechar modal
	$(".modal .fechar").click(function(){
		$(this).parent().fadeOut();
		$("#fundoModal").fadeOut(function(){ $(this).remove() });
	});

});

