function window_load(){
	jQuery(".bloque_link:has(.readmore)").click(function(){
	  window.location =  jQuery(".readmore", this).attr('href');
	}).hover(function(){
	    jQuery(this).addClass('hover');
	}, function(){
	    jQuery(this).removeClass('hover');
	});
}

jQuery(document).ready(window_load);
