// initialize slideshow
			$j(document).ready(function($) {
				if ($('#Slides').length > 0) {
					$('#Slides').nivoSlider({
						effect: 'random',
						slices: 11,
						animSpeed: 800,
						pauseTime: 6000,
						directionNav: true, //Next and Prev
						directionNavHide: true, //Only show on hover
						controlNav: false, //1,2,3...
						pauseOnHover: false, //Stop animation while hovering
						manualAdvance: false, //Force manual transitions
						beforeChange: function(){},
						afterChange: function(){}
					});
				}
			});
