$(document).ready(function(){
	
	$('#taglines').cycle({
		fx:     'fade',
		speed:  3000,
		random: 0,
		timeout: 8000
	});
	
	$('#slideshow').cycle({
		fx:     'fade',
		speed:  1000,
		random: 0,
		timeout: 8000,
		prev:    '#slideshow-left',
        next:    '#slideshow-right'
	});
	
	 $("#nav ul li:last-child").addClass("last");
						   
});

