/* All the presets options are the custom ones */

var rokbox;
window.addEvent('domready', function() {
	rokbox = new RokBox({
		'theme': 'light', // nama folder
		'transition': Fx.Transitions.Quad.easeOut, // transisi untuk buka
		'duration': 500, // durasi
		'chase': 50,
		'frame-border': 20, // lebar frame
		'content-padding': 0, // padding
		'arrows-height': 35, // tinggi
		'effect': 'growl', // efek
		'captions': 1, 
		'captionsDelay': 800, 
		'scrolling': 0,
		'keyEvents': 1,
		'overlay': {
			'background': '#000',
			'opacity': 0.3, // transparansi
			'duration': 200, 
			'transition': Fx.Transitions.Quad.easeInOut // efek
		},
		'defaultSize': {
			'width': 640, 
			'height': 460 
		},
		'autoplay': 'true', 
		'controller': 'true',
		'bgcolor': '#ffffff', // latar
		'youtubeAutoplay': 0,
		'vimeoColor': '00adef',
		'vimeoPortrait': 0,
		'vimeoTitle': 0,
		'vimeoFullScreen': 1,
		'vimeoByline': 0 
	});
});