var containerStat = 0		  //Container visible prior to images are loaded on/off
var toggleSpeed = 1000        //Dropdown speed - possible values: slow,normal,fast or xxxx milliseconds 
var percentComplete = "100%"   //% complete - sets bar location and bar % display
var barSpeed = 1500           //Bar animation speed in milliseconds
var animationDelay =800	  	  //Bar and tip start animation delay in milliseconds

//SUPERSIZE
jQuery(function($){
				$.supersized({
				
slideshow         :   0,		//Slideshow on/off
autoplay				:	1,		//Slideshow starts playing automatically
start_slide       :   1,		//Start slide (0 is random)
random				: 	0,		//Randomize slide order (Ignores start slide)
slide_interval    :   1500,	//Length between transitions
transition        :   1, 		//0-None, 1-Fade, 2-Slide Top, 3-Slide Right, 4-Slide Bottom, 5-Slide Left, 6-Carousel Right, 7-Carousel Left
transition_speed	:	1000,	//Speed of transition
performance			:	1,		//0-Normal, 1-Hybrid speed/quality, 2-Optimizes image quality, 3-Optimizes transition speed // (Only works for Firefox/IE, not Webkit)
image_protect		:	1,		//Disables image dragging and right click with Javascript
keyboard_nav      :   0,		//Keyboard navigation on/off

				
slides 				:  	[		//Slideshow Images
						{image : 'images/bg_1.jpg', title : 'Tempelgirl'}   
						]											
	}); 
});
