// JavaScript Document
;( function( $ ) {
	$( '.swipebox' ).swipebox();
} )( jQuery );

;( function( $ ) {

	$( '.swipebox' ).swipebox( {
		useCSS : true, // false will force the use of jQuery for animations
		useSVG : true, // false to force the use of png for buttons
		hideBarsOnMobile : false, // false will show the caption and navbar on mobile devices
		hideBarsDelay : 30000, // delay before hiding bars
		videoMaxWidth : 1140, // videos max width
		beforeOpen: function() {
			//if( /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent) ) {
			//}
		}, // called before opening
		afterClose: function() {} // called after closing
	} );

} )( jQuery );