//#############Image box!###################""

$(document).ready(
	function()
	{
		$.ImageBox.init(
			{
				loaderSRC: 'loading.gif',
				closeHTML: '<img src="http://www.cielabobine.fr/close.jpg" />'
			}
		);
	}
);

// ##################################################
//Le script du logo d'index

$(document).ready(function() {
        $("a").hover(
        //LE LOGO DISPARAIT lennnntement( oh oui!!)...
        function(){
        
        $("#header,#logointro").fadeOut(5000);
        },
        //Puis réapparait sensuellement... MAGIE!!!
        function(){
        $("#header,#logointro").fadeIn(10000);
         });
         });
         
         
