function close_open_nav(ignore_id){

    $('.nav_head').each ( function(){

           c_id = $(this).attr("id");

           if ( c_id != ignore_id){
               if ( $('#'+c_id+'_list').css('display') != 'none'  ){
                   toggleNav( c_id );
               }
           }

        });
}

function toggleNav( id_sel ){

    list_id = '#' + id_sel + '_list';
    select_id = '#' + id_sel + '_selected';

    if ( $(list_id).hasClass('hideSlide') ){

        $(list_id).removeClass('hideSlide');
        $(list_id).slideDown();
        $(select_id).fadeOut();

    }else {
        $(list_id).addClass('hideSlide');
        $(list_id).slideUp();
        $(select_id).fadeIn();
    }


}

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

    $('.nav_head').click ( function(){

       id = $(this).attr("id");
       close_open_nav( id );
       toggleNav ( id );

    });

    $('.nav_head').each ( function(){

       id = $(this).attr("id");
       $('#'+id+'_list').addClass('hideSlide');
       $('#'+id+'_list').hide();

    });

});
