$(document).ready(function(){	
    // Flèche
    $('#arrow').hover(function(){
    $(this).animate({left: "+=300", opacity: "0.8"}, 300, function() {// Animation complete.
    });
    $(this).fadeOut(300);
    $(this).css({display: none});
    });
    $('body').mousedown(function(){
    $('#arrow').animate({left: "+=300", opacity: "0.8"}, 300, function() {// Animation complete.
    });
    $('#arrow').fadeOut(300);
    $('#arrow').css({display: none});
					
    });


    // Les bon liens
    $('#lesBonLiens').click(function(){
	$(this).fadeOut(0);
	$('#lesBonLiens2').fadeIn(300);
	$('#fermer_lien').fadeIn(300);
    });
    $('#fermer_lien').click(function(){
	$(this).fadeOut(0);
	$('#lesBonLiens2').fadeOut(0);
	$('#lesBonLiens').fadeIn(300);
	});
	$("#btn_liens").click(function(){
	    location.href = '#';				
	});

	//Création graphique
	$('#creaGraphique').click(function(){
	    $(this).fadeOut(0);
	    $('#creaGraphique2').css({zIndex: 10});
	    $('#accesSite').css({zIndex: 1});
	    $('#creaGraphique2').fadeIn(300);
	    $('#fermer_crea').fadeIn(300);
	});
	$('#fermer_crea').click(function(){
	    $(this).fadeOut(0);
	    $('#creaGraphique2').fadeOut(0);
	    $('#creaGraphique').fadeIn(300);
	    });
	$("#btn_portfolio").click(function(){
	    location.href = '#';				
	});
	//Sets de tables
	$('#setTable').click(function(){
	    $(this).fadeOut(0);
	    $("#setTable2").fadeIn(300);
	    $("fermer_set").fadeIn(300);
	});
	$('#fermer_set').click(function(){
	    $("#setTable2").fadeOut(0);
	    $("#setTable").fadeIn(300);
	});
	$("#btn_info").click(function(){
	    location.href = 'ideo/contacts.php';				
	});

	// Devis
	$("#devis").mouseenter(function(){
	    $(this).animate({opacity: "1"}, 300, function() {// Animation complete.
	});
	});
	$("#devis").mouseleave(function(){
	    $(this).animate({opacity: "0.5"}, 300, function() {// Animation complete.
	});
	});
	$("#devis").click(function(){
	    location.href = 'ideo/contacts.php';				
	});


});

