// WORK SCRIPTS //		// Start jQuery$(document).ready(function() {/* Home Page ****************************************************************/	$('.articleHomeSlideshow').cycle({		fx: 'fade',		speed:  1000,		pause: 0,		pauseOnPagerHover: 0,		random: 1,		timeout: 4000	});		/* If you were to add more slideshows with different effects you'd simply add them to this same file like so */		$('#slideshow-2').cycle({		fx: 'fade',		speed:  4000,		pause: 2,		random: 3,		timeout: 2000	});		$('#slideshow-3').cycle({		fx: 'fade',		speed:  5000,		pause: 4,		random: 5,		timeout: 4000	});}); // End jQuery
