jQuery(document).ready(function() {
	
	jQuery('.gallery .nivo-slider').nivoSlider({
		effect:				'fade',
		directionNav:		false, //Next & Prev
		directionNavHide:	true, //Only show on hover
		controlNav:			true, //1,2,3...
		controlNavThumbs:	false, //Use thumbnails for Control Nav
		afterLoad: function(){
			jQuery('.nivo-controlNav').find('a.nivo-control:first-child').addClass('first');
			jQuery('.nivo-controlNav').find('a.nivo-control:last-child').addClass('last');	
        }
	});
	
});
