function mainmenu(){
	$(" .submenu ").css({display: "none"});
	$(" .nav-equipos").hover(function(){
		$(this).find('.submenu').css({visibility: "visible",display: "none"}).show('blind').toggleClass("active",1);
		$(this).find('.nav-equipos a').toggleClass("active",1);
		},function(){
		$(this).find('.submenu').css({visibility: "hidden"});
		$(this).find('.nav-equipos a').toggleClass("active",1);
	});
};

function modalOff(){
	jQuery('.fade').hide();
	jQuery('.modal').hide();
};
$(function() {

	$('.fade').click(function() {
	jQuery('.fade').hide();
	jQuery('.modal').hide();
	});

});

function videos() {
	$(".videos-container").tabs({ fx: { opacity: 'toggle', duration: 'slow' }}).tabs();
	
}

$(document).ready(function(){	
	mainmenu();
	
	videos();
	
		
	flowplayer("a.player",
		{ 	src	: 	"flash/flowplayer-3.2.5.swf",wmode: 'opaque'},
		{
			// screen:	 {	bottom: 0  }, make the video take all the height
			plugins: {				 // change the default controlbar to modern	
				controls: {
					url: 'flowplayer.controls-3.2.3.swf',
					
					sliderColor: '#FFFFFF',
					sliderBorder: '1.5px solid rgba(160,160,160,0.7)',
					volumeSliderColor: '#FFFFFF',
					volumeBorder: '1.5px solid rgba(160,160,160,0.7)',
					timeColor: '#ffffff',
					durationColor: '#535353',
					tooltipColor: 'rgba(255, 255, 255, 0.7)',
					tooltipTextColor: '#000000'
				}
			},
			clip: {
				autoPlay: true,
				autoBuffering: true
			}
		}
	);
	
	
});

function showRecom(nro){
	document.getElementById(nro).style.display 			= 	'block'; 
	document.getElementById('fade').style.display 		= 	'block';
	contacto();
}
function hideRecom(nro){
	document.getElementById(nro).style.display 			= 	'none'; 
	document.getElementById('fade').style.display 		= 	'none';
	contacto();
}
