/**
 * Select the correct top menu
 */
function setTopMenuSelection(menu)
{    
    if(menu == '')return;
    
    if(menu == 'ACCUEIL')
    {
        item_nb = 1;
    }
    
    if(menu == 'LE COACHING DUKAN')
    {
        item_nb = 2;
    }
    
    if(menu == 'LA COMMUNAUTE')
    {
        item_nb = 3;
    }
    
    if(menu == "JE M'INSCRIS")
    {
        item_nb = 4;
    }

    txt = trim($('#navHeader #item'+item_nb).html());
	replace = str_replace(txt, '<strong>'+txt+'</strong>', $('#navHeader #item'+item_nb).html());
	

    $('#navHeader #item'+item_nb).html(replace);


}


/*
	#leftColInside li:first-child {background-color: #87005f; color: white; font-weight: bold;}
	#leftColInside li:first-child a:hover {background-color: #87005f; color:black;}
	#leftColInside li:first-child a {color: white;}
*/

$(document).ready(function(){

	$('#leftColInside li:first').css('background-color', '#87005f');
	$('#leftColInside li:first, #leftColInside li:first a').css('color', 'white');
	$('#leftColInside li:first').css('font-weight', 'bold');


});
