$(document).ready(function() {
	// TODO: Add controls to nav
	$('#portfolio-slider').nivoSlider({
		effect: 'random', //Specify sets like: 'fold,fade,sliceDown'
		slices: 15,
		animSpeed: 500,
		pauseTime: 5000,
		startSlide: 0, //Set starting Slide (0 index)
		directionNav: false, //Next & Prev
		controlNavThumbs: true, //Use thumbnails for Control Nav
      	controlNavThumbsFromRel: true, //Use image rel for thumbs
		controlNavThumbsSearch: '.jpg', //Replace this with...
		controlNavThumbsReplace: '_thumb.jpg', //...this in thumb Image src
		pauseOnHover: true, //Stop animation while hovering
	});
});