// Start jQuery

$(document).ready(function() {
	
	$('#content .slideshow br').remove();
	$('#content .slideshow').children('p:empty').remove();
	
	// Image slideshow
	$(function() {
	   $('#content .column:eq(0) .slideshow').cycle({
			delay: -2000,
			timeout: 4500,
			speed: 2000,
			random: 1,
			pause: true
		});
	});
	
	// Image slideshow
	$(function() {
	   $('#content .column:eq(1) .slideshow').cycle({
			delay: -1700,
			timeout: 4500,
			speed: 2000,
			random: 1,
			pause: true
		});
	});
	
	// Image slideshow
	$(function() {
	   $('#content .column:eq(2) .slideshow').cycle({
			delay: -1400,
			timeout: 4500,
			speed: 2000,
			random: 1,
			pause: true
		});
	});
	
}); // End jQuery
