jQuery(function($) {
	var $target = null;
	
	$("a.abre-oculto").click(function() {
		$target = $($(this).attr('href'));
		$('html, body').animate({ scrollTop:0 }, 'fast', function(){
			$("div#box-oculto").fadeIn(400);
			$target.show();
			$("body").css("overflow", "hidden");
		});
		return false;
	});
	
	$("img#fecha-oculto").click(function() {
		$("div#box-oculto").fadeOut(200);
		$target.hide();
		$("body").css("overflow", "auto");
		return false;
	});
	

});
