//mobile detection
var is_mobile = (/iphone|ipad|ipod|android|blackberry|mini|windows\sce|palm/i.test(navigator.userAgent.toLowerCase()));



//on doc ready
$(window).load(function() {

//custom scrollbars for scrollboxes
if ($('.scrollbox').length) {
	$('.scrollbox').tinyscrollbar();
}
	
//slideshow
if ($('#coverup').length) {
	$('#coverup').innerfade({
		animationtype: 'fade',
		speed: 2000,
		timeout: 6000,
		type: 'random',
		containerheight: '248px'
	});
	$('#coverup').fadeIn('slow'); 
}

//carrusel home y compania
if ($('#carrusel-home').length) {
$("#carrusel-compania, #carrusel-home").thumbnailScroller({ 
	scrollerType:"hoverPrecise", 
	scrollerOrientation:"horizontal", 
	//scrollSpeed:2, 
	scrollEasing:"easeOutCirc", 
	scrollEasingAmount:0, /*600*/
	acceleration:4, /*4*/
	scrollSpeed:800, /*2000*/  
	noScrollCenterSpace:10, 
	autoScrolling:6, 
	autoScrollingSpeed:32000, 
	autoScrollingEasing:"linear", 
	autoScrollingDelay:3000 
});
}

//carrusel compania
if ($('#carrusel-compania').length) {
$("#carrusel-compania, #carrusel-home").thumbnailScroller({ 
	scrollerType:"hoverPrecise", 
	scrollerOrientation:"horizontal", 
	//scrollSpeed:2, 
	scrollEasing:"easeOutCirc", 
	scrollEasingAmount:0, /*600*/
	acceleration:1, /*4*/
	scrollSpeed:600, /*2000*/  
	noScrollCenterSpace:10, 
	autoScrolling:6, 
	autoScrollingSpeed:52000, 
	autoScrollingEasing:"linear", 
	autoScrollingDelay:3000 
});
}

//carrusel espectaculo en gira
if ($('#carrusel-espectaculo').length) {
$("#carrusel-espectaculo").thumbnailScroller({ 
	scrollerType:"clickButtons", 
	scrollerOrientation:"horizontal", 
	scrollSpeed:2, 
	scrollEasing:"easeOutCirc", 
	scrollEasingAmount:600, 
	acceleration:4, 
	scrollSpeed:800, 
	noScrollCenterSpace:10, 
	autoScrolling:0, 
	autoScrollingSpeed:2000, 
	autoScrollingEasing:"easeInOutQuad", 
	autoScrollingDelay:500 
});
}

//fancyboxes - - - - - 

//foto compania espectaculos
if ($('.foto-espect-amp').length) {
$(".foto-espect-amp").fancybox({
'overlayColor':'#000000',
'overlayOpacity':0.7,
'transitionIn': 'fade',
'transitionOut': 'fade',
});
}

//swf 400x320
if ($('.video-swf-400x320').length) {
$(".video-swf-400x320").fancybox({
'overlayColor':'#000000',
'overlayOpacity':0.7,
'width': 400,
'height': 320,
'autoScale': false,
'transitionIn': 'fade',
'transitionOut': 'fade',
'type': 'iframe'
});
}

//youtube 425x344
if ($('.video-youtube-425x344').length) {
$(".video-youtube-425x344").fancybox({
'overlayColor':'#000000',
'overlayOpacity':0.7,
'width': 425,
'height': 344,
'autoScale': false,
'transitionIn': 'fade',
'transitionOut': 'fade',
'type': 'iframe'
});
}

//youtube 560x340
if ($('.video-youtube-560x340').length) {
$(".video-youtube-560x340").fancybox({
'overlayColor':'#000000',
'overlayOpacity':0.7,
'width': 560,
'height': 340,
'autoScale': false,
'transitionIn': 'fade',
'transitionOut': 'fade',
'type': 'iframe'
});
}

//youtube 560x315
if ($('.video-youtube-560x315').length) {
$(".video-youtube-560x315").fancybox({
'overlayColor':'#000000',
'overlayOpacity':0.7,
'width': 560,
'height': 315,
'autoScale': false,
'transitionIn': 'fade',
'transitionOut': 'fade',
'type': 'iframe'
});
}

//ver pdf
if ($('.ver-pdf').length) {
$(".ver-pdf").fancybox({
'overlayColor':'#000000',
'overlayOpacity':0.7,
'width': '85%',
'height': '90%',
'autoScale': false,
'transitionIn': 'fade',
'transitionOut': 'fade',
'type': 'iframe'
});
}

//alert copyright
if ($('.alert-copyright').length) {
$(".alert-copyright").fancybox({
'overlayColor':'#000000',
'overlayOpacity':0.7,
'width': 400,
'height': 200,
'autoScale': false,
'transitionIn': 'fade',
'transitionOut': 'fade',
'type': 'iframe'
});
}

/*
$(".video-swf-300x225").fancybox({
'width': 300,
'height': 225,
'autoScale': false,
'transitionIn': 'none',
'transitionOut': 'none',
'type': 'iframe'
});
*/
	
}); //docready

