$(document).ready(function(){
	 
	 setTimeout(function(){
    
        $("#uno").animate({"left":"0px"},1000,"easeOutQuart");

    },500);
    setTimeout(function(){
    
        $("#due").animate({"left":"240px"},1500,"easeOutQuart");

    },1500);
    
    
    
    setTimeout(function(){
    
        $(".scroll-pane").fadeIn({duration:1200});
    
    },2000);
    
     
	
	
    var theid = $("#menu a.active");
    var theidx = $("a.be").index(theid);
    var theh = (theidx*32)+94;
       
    $(theid).animate({"height":"359px"},1200,"easeOutQuart");
    
    $("#menu").css({"width":"260px"});
   
    $("#uno,#due").css({"top":theh+"px"}); 
    $(".scroll-pane").jScrollPane({scrollbarWidth: 8});
    $(".scroll-pane").hide();
    
    $(theid).data("ck","ok");
    $(theid).trigger("mouseover");
             
    
     
});


