// JavaScript Document


function ok(message){
	
$(document).ready(function(){ 
						   
	var mensagem = document.getElementById('message');
	var altura = document.body.offsetHeight;
	mensagem.innerHTML = message;
	
	$(".overlay,.window").fadeIn("fast");
	$(".overlay").css({height: altura+"px"});
	$(".overlay").fadeTo("fast","0.75");
	$(".window").animate({"top":"51%"},0); 	$(".window").animate({"top":"-=2%"},0);
	
	$(".bar").mousedown(function(){ $(this).animate({"backgroundColor":"#cccccc"},0); 	$(".window").draggable(); 	});
	$(".bar").mouseup(function(){ 	$(this).animate({"backgroundColor":"#dddddd;"},0);  $(".window").draggable("destroy"); });


	$(".ok").click(function(){ 		$(".window").animate({"top":"-=2%"},0); 	$(".window").animate({"top":"120%"},0); $(".overlay,.window").fadeOut("fast");});
	$(".ok").mouseover(function(){ 	$(this).animate({"backgroundColor":"#cccccc"},0); });
	$(".ok").mouseout(function(){ 	$(this).animate({"backgroundColor":"#dddddd;"},0); });

						   
						   });	
}



$(document).ready(function(){

			//botoes
			$(".status_bts").mouseover(function(){  $(this).animate({"opacity":"0.5"},"fast"); $(this).animate({"opacity":"0.85"},"fast"); });
			$(".status_bts").mouseout(function(){  $(this).animate({"opacity":"1"},"fast"); });
						   
			//inputs
			$("input[type=text],input[type=password],select,textarea,option").focus(function(){  $(this).animate({"backgroundColor":"#e0e0e0"},"fast"); $(this).animate({"color":"#333333"},"fast");});
			$("input[type=text],input[type=password],select,textarea,option").blur(function(){  $(this).animate({"backgroundColor":"#f9f9f9"},"fast");  $(this).animate({"color":"#A19585"},"fast");});

			//links
			/*
			$("a").mouseover(function(){   $(this).animate({"color":"#FF6600"},"fast");});
			$("a").mouseout(function(){    $(this).animate({"color":"#9f9890"},"fast");});
			*/
			
						   });