

jQuery(function(){
	jQuery("#open").toggle(function(){
		//jQuery("#oculto").slideDown("slow"/*, function(){jQuery("body > table").css("margin-bottom","64px");}*/);
		//jQuery(this).find("img").attr("src","img/close.gif?" + Date());
		//jQuery(this).animate({height:'50px'},300);
		jQuery("#oculto").slideDown("slow"/*, function(){jQuery("body > table").css("margin-bottom","64px");}*/);
		jQuery(this).find("img").attr("src","img/close.gif?" + Date());
	},
	function(){
		//jQuery(this).css({height:'32px'},300);
		jQuery("#oculto").slideUp("fast"/*, function(){jQuery("body > table").css("margin-bottom","32px");}*/);
		jQuery(this).find("img").attr("src","img/open.gif?" + Date());
	});
	//setTimeout(function(){jQuery("#sticky").fadeIn(1000)},2000);
	setTimeout(function(){jQuery("#sticky").animate({opacity:1},1500); },2000);
	
	
});



