// The most basic implementation using the default options

/** Initiate the SlideDeck */
$('#mainAd 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 = [
	'Facebook',
	'Free Shipping',
	'Weekly Specials',
	'Featured Wine',
	'Email Newsletter'
];
/** 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 */

