function clicklink (id,div_id)
{
    var title = $("#sub_"+id).html();
    $("#crumb_1").html(title);
    $("#"+div_id+" div.section").each(function(){
        $(this).hide();
    });
    $("#des_"+id).show();
}


