// JavaScript Document
$(document).ready(function(){	
			$("#logogrande>img").animate({"height": 53, "width":60, "top":0, "left":0},4000,function(){
				$("#logogrande").hide();
				$("#logoini").show(1,function(){
					$("div.item:eq(0)").show("slow", function () {
        // use callee so don't have to name the function
       					$(this).next().show("slow", arguments.callee); 
				     })
					
				});
				//$("#texto").show();
			});
		});
