// Start jQuery

$(document).ready(function() {
	
	// Image slideshow
	$(function() {
	   $('.col-1').cycle({
			delay: -2000,
			timeout: 4500,
			speed: 2000,
			random: 1,
			pause: true
		});
	});
	
	// Image slideshow
	$(function() {
	   $('.col-2').cycle({
			delay: -1700,
			timeout: 4500,
			speed: 2000,
			random: 1,
			pause: true
		});
	});
	
	// Image slideshow
	$(function() {
	   $('.col-3').cycle({
			delay: -1400,
			timeout: 4500,
			speed: 2000,
			random: 1,
			pause: true
		});
	});
	
}); // End jQuery