$(document).ready(function(){
	$(" #nav ul ").css({display: "none"});
	$(" #nav li").hover(function(){
	    $(this).find('ul:first:hidden').css({visibility: "visible",display: "none"}).slideDown(300);
	},
	function(){
	    $(this).find('ul:first').slideUp(300);
	});

	if(window.location.search.indexOf('componente=galerias') == 1)
		$('.ad-gallery').adGallery({
			thumb_opacity: 0.4,
			slideshow: { enable: false }
		});

	$('.cat').click(function(){
		$('.cat').next('ul').removeClass().hide();
		$(this).next('ul').show();
	});

	if(window.location.search.indexOf('componente=ciclistas') == 1){
		$('div.gallery img').slidingGallery({ container: $('div.gallery'), Lheight: 75 , Lwidth: 85, gutterWidth: 2 });

		if($('.biografia').height() > $('.palmares').height())
			$('.palmares').height($('.biografia').height());
	}

	$("#scroller").simplyScroll({
		autoMode: 'loop',
		horizontal: false,
		pauseOnHover: false
	});

	if(window.location.search.indexOf('componente=sponsors') == 1 || window.location.search.indexOf('componente=links') == 1){
		$("#scroller2").simplyScroll({
			autoMode: 'loop',
			horizontal: false,
			speed: 1,
			frameRate: 40,
			pauseOnHover: false
		});

		$("#scroller3").simplyScroll({
			autoMode: 'loop',
			horizontal: false,
			speed: 1,
			frameRate: 40,
			pauseOnHover: false
		});

		$('a.cargar').click(function(){
			var grande = $(this).find('img').attr('src').replace('imagenes/g_', 'imagenes/').replace('imagenes/', 'imagenes/orig_');
			$('.sponsor-principal').find('img').attr('src', grande);

			$('.sponsor-principal').find('p').remove();
			$('.sponsor-principal').append('<p>'+ $(this).parent().find('p').html() +'</p>');
			$('.sponsor-principal').find('p a').html($('.sponsor-principal').find('p a').attr('href'));

			$('.sponsor-principal').attr('class', 'sponsor-principal sponsor-cargado');

			return false;
		});

		var i = 1;
		function cambio(){
			if($('.sponsor-cargado').length == 0){
				i = Math.ceil(Math.random()*12);

				var grande = $('.sponsor'+i).find('img').attr('src').replace('imagenes/g_', 'imagenes/').replace('imagenes/', 'imagenes/orig_');
				$('.sponsor-principal').find('img').attr('src', grande);

				$('.sponsor-principal').find('p').remove();
				$('.sponsor-principal').append('<p>'+ $('.sponsor'+i).parent().find('p').html() +'</p>');
				$('.sponsor-principal').find('p a').html($('.sponsor-principal').find('p a').attr('href'));
				$i++;
			}
		}
		setInterval(cambio, 3000);
	}

	$('.lista-videos a').click(function(){
		$('.videoconsejo').find('object').remove();
		$('.videoconsejo').append('<object data="'+ $(this).attr('href') +'" type="application/x-shockwave-flash" width="550" height="300"><param name="MOVIE" value="'+ $(this).attr('href') +'" /></object>');

		return false;
	});

	function slider(){
	    $('#slider').nivoSlider({
	        effect:'fade',
	        animSpeed:500,
	        pauseTime:4000,
	        startSlide:0,
	        directionNav:false,
	        controlNav:false,
	        keyboardNav:false,
	        pauseOnHover:true
	    });
	}
	setTimeout(slider, 1000);

	function traductor(){
		function googleTranslateElementInit() {
		  new google.translate.TranslateElement({
		    pageLanguage: 'es',
		    includedLanguages: 'gl,en'
		  }, 'google_translate_element');
		}
		googleTranslateElementInit();
	}
	setTimeout(traductor, 500);

	// Mostrar y ocultar videos (multimedia)
	if($('.mas-videos').length){
		$('.mas-videos').hide();
		$('.videos').append('<div class="mostrar-videos"><img src="templates/web/img/more.png" alt="Mas videos" /></div>');

		$('.mostrar-videos').click(function(){
			if($('.mas-videos').css('display') == 'none'){
				$('.mas-videos').slideDown();
				$('.mostrar-videos img').attr('src', 'templates/web/img/less.png').attr('alt', 'Menos videos');
			}else{
				$('.mas-videos').slideUp();
				$('.mostrar-videos img').attr('src', 'templates/web/img/more.png').attr('alt', 'Mas videos');
			}
		});
	}
});
