// Cycle slideshow - http://malsup.com/jquery/cycle/
// Example #1 - Custom Slideshow

$(document).ready(function($){

	// create slideshow
	$('#slideshow').cycle({
		timeout: 4000,
		speed: 900,
		pause: 1		
			});
	
// End Example 1

	// Add 'first' and 'last' class to some elements
	$('#right.sidebar .features div:first-child, #footer .nav li:first-child, div.svSyndRemote dl:first-child').addClass('first');
	$('div.svSyndRemote dl:last-child').addClass('last'); /* remote feeds did not have first/last classes until Mura 5.2 r2099*/

});
