$(document).ready(function(){
	var greater;
	var lastEl;
	$('#wrapper #content .homepage .actualidad').find('.left,.right')
	.find('.image').each(function(i,el){
		if(lastEl){
			oOs = $(lastEl).offset()["top"];
			oNs = $(el).offset()["top"];
			greater = Math.abs(oOs-oNs);
			oOs > oNs ?
				$(el).css({position:'relative',top:greater}) :
				$(lastEl).css({position:'relative',top:greater});
		}
		lastEl = el;
	})
})