/**
 * @author Vito
 */
$(document).ready(function(){
	$('#btnPrensa').bind('click',function(){
		$('.prensa').hide("slow");
		$('#articulo').show("slow");
	}); 
	$('#btnVolver').bind('click',function(){
		$('.prensa').show("slow");
		$('#articulo').hide("slow");
	});
});