$(function(){
	var alto_tira = $(".tira").outerHeight();
	setTimeout(function(){
		$(".tira").stop().animate({bottom:-alto_tira+"px"},500);
	},1000);
	
	$("#cabecera").toggle(function(){
		var alto = $(".desplegable").outerHeight();
		var topmarginpercent = 5;
		
		var topmargin = alto/100*topmarginpercent;
		var alto_final = alto-topmargin;
		$(".desplegable").stop().animate({"bottom":-alto+"px"},1000,"easeOutBounce");
		$(".tira").stop().animate({bottom:"0"},500);
	},function(){
		$(".desplegable").stop().animate({"bottom":"0"},1000,function(){
			$(".tira").stop().animate({bottom:-alto_tira+"px"},500);
		});
	});
	
	$(".tira").hover(function(){
		$(this).stop().animate({"bottom":-(alto_tira+2)+"px"},0);
	},function(){
		$(this).stop().animate({"bottom":-(alto_tira)+"px"},0);	
	});
});


