$(document).ready(function(){
	$(function(){
		$('.botao_padrao').addClass('ui-state-default ui-corner-all').hover(function(){
			$(this).addClass('ui-state-hover');
		}, function(){
			$(this).removeClass('ui-state-hover');
		});
	});
	$(function(){
		$(".draggable").mousedown(function(){
            $(".draggable").css({'z-index': '1'});
            $(this).css({'z-index': '2'});
        }).draggable({distance: 10, handle: '.ui-widget-header'});
        $(".draggable .ui-widget-header").disableSelection();
	});
	$(function(){
		$('#usuario').focus();
	});
    $(function(){
        $('#container').animate({opacity: 0.75}, 2200, 'linear', function(){
            $('#container').animate({opacity: 1.0}, 800, 'linear');
            $(this).find('div.draggable').animate({opacity: 1.0}, 800, 'linear');
        });
    });
});
function lostPassword(usuario)
{
    $.post(actions_path+'lostPassword.act.php', {usuario: usuario}, function(data){
        alert(data);
    });
}
