window.addEvent( 'domready', function() {
	
	$$('.listado ul li').addEvent('click', function() {
		var enlace = this.getElement( 'h4 a');
		document.location = enlace.get('href');
	});
	
});
