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

$('#showcase').nivoSlider({
		effect:'fade', //Specify sets like: 'fold,fade,sliceDown' it was slideDown
		slices:15,
		animSpeed:300, //200
		pauseTime:7000, //4000
		startSlide:0, //Set starting Slide (0 index)
		directionNav:true, //Next & Prev
		directionNavHide:true, //Only show on hover
		controlNav:false, //1,2,3...
		controlNavThumbs:false, //Use thumbnails for Control Nav - was false
		pauseOnHover:true, //Stop animation while hovering
		captionOpacity:0.8, //Universal caption opacity
		slideshowEnd: function(){} //Triggers after all slides have been shown
	});

});
