// JavaScript Document

/*jQuery(function(){
	jQuery("#textoOculto").toggle(function(){
		jQuery("#oculto").slideDown("slow", function(){jQuery("body > table").css("margin-bottom","230px");});
		jQuery(this).css("background","url(../img/close.gif) no-repeat");
	},
	function(){
		jQuery("#oculto").hide("fast", function(){jQuery("body > table").css("margin-bottom","32px");});
		jQuery(this).css("background","url(../img/open.gif) no-repeat");
	});
});*/

/*jQuery(function(){
	jQuery("#open").click(function(){
		jQuery(this).hide("fast", function(){jQuery("#close").fadeIn(1000)});
		jQuery("#oculto").slideDown("slow", function(){jQuery("body > table").css("margin-bottom","230px");});
	});
	jQuery("#close").click(function(){
		jQuery(this).hide("fast", function(){jQuery("#open").fadeIn(1000)});
		jQuery("#oculto").hide("fast", function(){jQuery("body > table").css("margin-bottom","32px");});
	});
});*/

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/closed41d.gif?" + Date());
	},
	function(){
		jQuery("#oculto").slideUp("fast"/*, function(){jQuery("body > table").css("margin-bottom","32px");}*/);
		jQuery(this).find("img").attr("src","img/opend41d.gif?" + Date());
	});
	setTimeout(function(){jQuery("#sticky").fadeIn(1500)},2000);
});



