// when the DOM is ready

$(document).ready(function () {

	$('#slideshow').cycle({ 
		fx:     'fade', 
		speed:   1000, 
		timeout: 12000, 
		pager:  '#slideshow-nav' 
	});
	
	$('#cattle-rotate').cycle({ 
		fx:     'fade', 
		speed:   1000, 
		timeout: 7000, 
		pager:  '#slideshow-nav' 
	});

	
});
							