
jQuery(document).ready( function() {

	// slideshow on project page
	jQuery('#project-slideshow').cycle({ 
    	prev:   '#prev', 
    	next:   '#next', 
		nextImg:   '.nextImg', 
    	timeout: 0,
		speed: 300,
		before: pictureIndex
	});
	
	function pictureIndex() { 
    	jQuery('#index').html(this.alt); 
	};
	
});
