$(document).ready(function() {
	$('.slideshow').cycle({
		fx: 'fade',		// choose your transition type, ex: fade, scrollUp, shuffle, etc...
		speed: 1000,	// Fade speed
		timeout: 15,	// Next slide speed
		before:  onBefore
	});

	function onBefore() {
		var itemId	= $(this).attr('class');

		// Check if there is a previous item. If there is not a previous ID we are at the end of the Unsorted List (UL)
		if ( $('#'+ itemId).prev().attr('id') ) {
//			$('#'+ itemId).prev().css( { 'text-decoration' : 'none', 'color' : '#ffffff', 'border-top' : '2px solid #ffffff' } );
		} else {
//			$('#menu ul li:last-child').css( { 'text-decoration' : 'none', 'color' : '#ffffff', 'border-top' : '2px solid #ffffff' } );
		}

//		$('#'+ itemId).css( { 'text-decoration' : 'underline', 'color' : '#d29a81', 'border-top' : '2px solid #d29a81' } );
	}
});


