$(document).ready(function(){
    $('#what_to_do_in_case_of_menu:parent + ul').each(function(){
        if (!this.id) {
            this.id = '__menu_ul_id_'+Math.floor(Math.random()*100000);
        };
        $('#'+this.id+' li a').each(function(){
            this.href = "/index.php/site/emergency_planning/what_to_do_in_case_of#"+this.id.replace(/_menu/,'');;
        });
    });
});