//Start doc ready stuff
$(function() {

//Body Content fadeIn
$("#site-wrapper").fadeIn(3000);

// Scalable Gallery

$('#gallery').cycle({ 
fx:     'scrollHorz',
easing: 'easeOutCubic',
speed:  1000, 
timeout: 0,
prev: '#left-arrow-wrapper',
next: '#right-arrow-wrapper',
fit: 'true',
cleartypeNoBg: 'true'
});

// Videos Scroller

$('#gallery').cycle({ 
fx:     'scrollHorz',
easing: 'easeOutCubic',
speed:  1000, 
timeout: 0,
prev: '#video-left',
next: '#video-right',
fit: 'true',
cleartypeNoBg: 'true'
});

$("#gallery").touchwipe({
       wipeLeft: function() {
           $("#gallery").cycle("next");
       },
       wipeRight: function() {
           $("#gallery").cycle("prev");
       }
   });	
	
});//end doc ready stuff
		
