// JavaScript Document

$(window).bind("load", function() { 
    $("div#slide").slideViewerPro({ 
        autoslide: false,  
        asTimer: 10200,  
        galBorderWidth: 0, 
        thumbsBorderOpacity: 0,  
        buttonsTextColor: "#7b6b3e", 
        buttonsWidth: 40, 
        thumbsActiveBorderOpacity: 0.8, 
		galBorderWidth: 0, 
		thumbsTopMargin: 10, 
		thumbsRightMargin: 8, 
		thumbsBorderWidth: 3, 
		buttonsWidth: 20, 
		galBorderColor: "#fff", 
		thumbsBorderColor: "#ece6d6", 
		thumbsActiveBorderColor: "#7b6b3e", // the border color of the current thumbnail 
		thumbsBorderOpacity: 1.0, // could be 0, 0.1 up to 1.0 
		thumbsActiveBorderOpacity: 1.0, // could be 0, 0.1 up to 1.0 
		easeTime: 750, // the time it takes a slide to move to its position 
		thumbs: 6, // the number of visible thumbnails 
		thumbsPercentReduction: 12, // the percentual reduction of the thumbnails in relation to the original 
		thumbsVis: true, // with this option set to false, the whole UI (thumbs and buttons) are not visible 
		leftButtonInner: "-", //could be an image "<img src='images/larw.gif' />" or an escaped char as "&larr"; 
		rightButtonInner: "+", //could be an image or an escaped char as "&rarr"; 
		typo: false, // the typographic info of each slide. When set to true, the ALT tag content is displayed 
		typoFullOpacity: 0.9 // the opacity for typographic info. 1 means fully visible. 
    }); 
	
}); 
