/*
	Definições de js do cliente
*/

//banner flutuante, caso houver
$(function(){
/*
	var maxima_largura = $(window).width()/1.3;
	var maxima_altura = $(window).height()/1.3;
	$("#banner").css("max-width", maxima_largura);
	$("#banner").css("max-height", maxima_altura);
	var centro = ($(window).width()/2) - ($("#banner").width()/2);
	$("#banner").css("left", centro);
	*/
	
	$("#fechar_banner").click(function(){
		$("#banner").animate({ opacity: "hide" }, "normal");
	});
});

$(document).ready(function(){

	/* Remove and highlighting the dialog boxes */
	/* succes */
	$(".del-x").click(function() {
				$(this).parents('#flashMessage').effect("highlight", {}, 400).animate({
					opacity: 0    
				},function () {
					$(this).remove();
				});
		return false;
	  });
	
});
