$(document).ready(function (){
    (function($){

//animacion entrada
        var timeout2 = 500;
        $(document).bind("idle.idleTimer", function(){ });
        $(document).bind("active.idleTimer", function(){
            $('#logo').animate({ left: 0, opacity: 1, }, 400,function(){
            	$('#menu').fadeTo('slow',1);
            });
        });
        $.idleTimer(timeout2);


//eventos activio/inactivo menu [+]

        var timeout = 10000;
        
        $(document).bind("idle.idleTimer", function(){
        
			$('#trabajos').fadeOut(300);				
            $('#clientes').fadeOut(300);		
			$('#premios').fadeOut(300);				
            $('#contacto').fadeOut(300);            
            $('#menuDesplegado01 a').animate({opacity: 0, }, 300);       



            $('#menuEvento01').text('+');
        	$('#valMenu').val('mas');
        	anima();

        });
        


        $.idleTimer(timeout);  
        
     
    
    
//		$('.desplegable01').mouseleave(function() {$('.desplegable01').fadeOut(300);});
//		$('.desplegable02').mouseleave(function() {$('.desplegable02').fadeOut(300);});
//		$('.desplegable03').mouseleave(function() {$('.desplegable03').fadeOut(300);});


//cerrar trabajos
		$('.cerrarTrabajo').click(function() {	
			$('.cajatrabajos').animate({opacity: 0, }, 300,function(){
				$('.tituloTrabajo').empty();
            	$('.contTrabajo').empty();
            });	
            		$('#volume').val('on');
					$('#btnAudio').css('background-image','url(images/volumeOn.png)');
					document.getElementById('amaca').play();
		});
		
		//
		
		
    })(jQuery);
});
