$(document).ready(function() {

    $('.images').show().cycle({
		fx: 'fade',
		timeout: 4500,
		before: function(previous, current) {
			$('#'+previous.name).removeClass('highlight');
			$('#'+current.name).addClass('highlight');
		}
	});
});
