$(document).ready(function() {

	// Easytabs config
	$('#tab-container').easytabs();
	
	//Fancybox config
	$("#various6").fancybox({
		'width'				: '1200px',
		'height'			: '600px',
	    'padding'           : 0,
        'autoScale'     	: false,
        'transitionIn'		: 'none',
		'transitionOut'		: 'none'
	});
	
	//Moving globes config
	var stage_left = (($('body').width() - 866) / 2);
	var stage_top = 30;	
	
	$('#globito').sprite({fps: 60, no_of_frames: 1})
	.spRandom({
		top: 120,
		left: stage_left + 700,
		right: 800,
		bottom: 140,
		speed: 2300,
		pause: 0
	});
	
	$('#globito2').sprite({fps: 60, no_of_frames: 1})
	.spRandom({
		top: 420,
		left: stage_left + 200,
		right: 300,
		bottom: 240,
		speed: 2300,
		pause: 0
	});
	
	// Audio player
	$("#jquery_jplayer_1").jPlayer({
		ready: function () {
			$(this).jPlayer("setMedia", {
				mp3: "js/siesteocho.mp3"
			}).jPlayer("play");
		},
		ended: function (event) {
			$(this).jPlayer("play");
		},
		swfPath: "js",
		supplied: "mp3"
	});
	
});
