//SHOW LOGIN FORM	
$(document).ready(function() {
	$(".topMenuAction").click( function() {
		if ($("#openCloseIdentifier").is(":hidden")) {
			$("#slider").animate({ 
				marginTop: "-50px"
				}, 500 );
			$("#topMenuImage").html('webmail');
			$("#openCloseIdentifier").show();
		} else {
			$("#slider").animate({ 
				marginTop: "-3px" //When menu is down
				}, 500 );
			$("#topMenuImage").html('&nbsp;&nbsp;fechar');
			$("#openCloseIdentifier").hide();
		}
	});  
});
