$(document).ready(function(){
						   
	$(".pane-list li").click(function(){
    	window.location=$(this).find("a").attr("href");return false;
	});
 
}); //close doc ready


$(document).ready(function(){ 

	$("#login").css('height', '0px');

	$("a.login").toggle( 
				function () { 
 					$("#login").animate({height: "100px"}, {queue:false, duration: 1000, easing: 'easeInOutCubic'}) 
                }, 
                function () { 
					$("#login").animate({height: "0px"}, {queue:false, duration: 100, easing: 'easeOutCubic'})  
				} 
		); 
        
}); 

function recordar() {
	document.getElementById("tablalogin").style.display="none";
	document.getElementById("tablarecordar").style.display="";	
	document.getElementById("email2").focus();
}

function iniciarsesion() {
	document.getElementById("tablalogin").style.display="";
	document.getElementById("tablarecordar").style.display="none";		
	document.getElementById("email").focus();
}


