var numSlides = 0;
            /** Initiate the SlideDeck */
    		$('.blackWborder dl.slidedeck').slidedeck({
				hideSpines: true
    		}).loaded(function(){
            /**
             * Take advantage of the loaded() method of the SlideDeck library to 
             * change the vertical slide navigation items based on the "navLabels" array
             */			
				var navLabels = [
					'', //Slide 1 Label
					'', //Slide 2 Label
					'', //Slide 3 Label
					'', //Slide 4 Label
					'', //Slide 5 Label
					'', //Slide 6 Label
				];
				/** Array holds the title for each button in .verticalSlideNav */				
				for( i=0 ; i<navLabels.length ; i++){
					$('.verticalSlideNav .nav_' + (i+1) + ' a').html(navLabels[i]);
				}			
				/** Loop through navLabels array and replace the innerHTML of each <a> in the vertical slide navigation */		
            }).vertical({
				scroll: true
				
			});
            /** Enable vertical slides */
	rotateSwitch = function(){		
		play = setInterval(function(){ //Set timer - this will repeat itself every 3 seconds
				$('.blackWborder dl.slidedeck').slidedeck().vertical().next(); //Trigger the paging and slider function
		}, 10000); //Timer speed in milliseconds (3 seconds)
	};
		//On Hover
	$(".blackWborder").hover(function() {
		clearInterval(play); //Stop the rotation
	}, function() {
		rotateSwitch(); //Resume rotation
	});	
	rotateSwitch();
