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

/* -- background -- */

$('#wrap').wrap($(document.createElement('div')).attr('id','bg'));

$('#bg').wrap($(document.createElement('div')).attr('id','bgTop'));

$('#bgTop').wrap($(document.createElement('div')).attr('id','bgBottom'));


/* -- professionnels -- */

$('header > p').css('padding','0').wrapInner($(document.createElement('a')).attr('href','#'));

$('#professionnels').hide();

$('header p a').click(function(e){

	e.preventDefault();
	
	if($('#professionnels:visible').length == 0){
	
		$('#professionnels').fadeIn('normal');
	
	}else{
	
		$('#professionnels').fadeOut('normal');
	
	}

});


/* -- presentation -- */

if ($('#presentation').length==1){

	$('#content section').css('margin',0);
	
	$('#content section div').css('height','160px');
	
	/* accordion */
    
    $('#content section h3').wrapInner($(document.createElement('a')).attr('href','#').addClass('accordionClick'));
    
    $('#content section:first-child').addClass('open');
    
    $('#content section+section div').hide();
    
    $(".accordionClick").click(function(){
    
    	if ($(this).parent('h3').next('div:visible').length == 0) {
    	
    		$('#content section').removeClass();
    		$(this).parent('h3').parent('section').addClass('open');
    	
    		$('#content section div').slideUp("normal"); 
            $(this).parent('h3').parent('section').children('div').slideDown("normal");
            
        }
        
        return false; 
    });     
}


/* -- contact -- */

$(".email").each(function(){

	var email = $(this).text();
		email= email.replace(" [@] ", "@");
		email= email.replace(" [.] ", ".");
		
	$(this).replaceWith("<a href=\"mailto:"+email+"\">"+email+"</a>");
	
});

});
