$(function() {
	$('#logindiv').center();
	$('#logindiv').show();	
	// Posicionar cursor no primeiro campo da tela
	$("input:text:visible:first").focus();

})


jQuery.fn.center = function () { 
	var usr=$('#l_usuario').val();
//	if (usr=='guy1') {
//		$('#campos_login').css('background-color','red');
//		$('#logindiv').show();
//		alert('.');
//	}
    this.css("position","absolute");
    this.css("top", ( $(window).height() - this.height() ) / 2+$(window).scrollTop() + "px");
    this.css("left", ( $(window).width() - this.width() ) / 2+$(window).scrollLeft() + "px");
    if ($.browser.msie) {
    	var x=$('#x').val();
    	var y=$('#y').val();
    	//$('#campos_login').css('top',x);
    	//$('#campos_login').css('left',y);
    }
    return this;
}
