$(document).ready(function ()
{	
	$('#slider').easySlider({
		auto: false,
		continuous: true,
		controlsShow: false
	});

	$('#logocenter_img').one('click',function() {
		$('#logo_contenido').fadeIn('fast');
		$(this).css('cursor','auto');
	});
	
	$('.fic-verinfo').click(function() {
		var enlace = $(this);
		var fic_id = enlace.attr('id');
		enlace.blur();
		if(enlace.attr('rel') == 'on')
		{
			enlace.parent().animate({width: '450px',height: ($('.fic-texto-'+fic_id).height()+45)+'px',opacity: 0.7},'normal',function(){ enlace.attr('rel','off').text('hide info'); $('.fic-texto-'+fic_id).show(); });
		}
		else if(enlace.attr('rel') == 'off')
		{
			$('.fic-texto-'+fic_id).hide();
			var cajawidth = enlace.parent().attr('rel');
			cajawidth = parseInt(cajawidth);
			enlace.parent().animate({width: cajawidth+'px',height: '15px',opacity: 0.7},'normal',function(){ enlace.attr('rel','on').text('more info'); });
		}
	});
	
	$('.fic-textofondo').each(function(index) {
		$(this).attr('rel',$(this).width());
  });
	
	$('.fic-textofondo > span').click(function() {
		var enlace = $(this);
		var id = enlace.attr('rel');
		var ids = id.split('-');
		var img = $('.fic-img-'+ids[0]);
		if(img.attr('src') != '/img/fichas/'+id+'.jpg')
		{
			$("span[rel='"+id+"']").parent().children('span').removeClass('noclickable');
			$("span[rel='"+id+"']").addClass('noclickable');
			img.fadeOut(200, function() {
				img.attr('src','/img/fichas/'+id+'.jpg').load(function() {
					img.fadeIn(200);					
				});
			});
		}
	});
	
	$('.enlace').mouseover(function(){
		$(this).toggleClass('verde');		
	}).mouseout(function(){
		$(this).toggleClass('verde');
	});

});

function mostrar_fichas()
{
	$('#flechas').fadeIn('fast');
	$('#mostrar_fichas').fadeOut('fast');
	$("a","#nextBtn").trigger('click');
}

function ocultar_fichas()
{
	$('#flechas').fadeOut('fast');
	$('#mostrar_fichas').fadeIn('fast');
}
