$(document).ready(function(){ 
	$('#images')
	.cycle({
    fx:     'fade',
	
    speed: 800,
    timeout: 4000,
	random: 'true'
});
	
	
	var highestCol = Math.max($('#latest-news').height(),$('#events').height());
	$('#latest-news, #events').height(highestCol);
	
	
});

	



