$(document).ready(function() {
	$('#ContentLeft .EzBlock').each(function() {
		if (typeof(contenido) != 'undefined') {
			return true;
		}
		var $this = $(this);
		var $a = $this.find('a');
		if ($a.length > 0) {
			$this.click(function() {
				window.location.href = $a.attr('href');;
				return false;
			}).hover(function() {
				$this.addClass('Hover');
			}, function() {
				$this.removeClass('Hover');
			}).css('cursor', 'pointer');
		}
	});
});
