function showMore(id, text){
    jQuery("#"+id).css('display', 'block');
    jQuery("#"+id+"_link").html("<a class='inline_arrow' href=\"javascript:showLess('"+id+"', '"+text+"')\" >See most recent "+text+" only</a>");
}

function showLess(id, text){
    jQuery("#"+id).css('display', 'none');
    jQuery("#"+id+"_link").html("<a class='inline_arrow' href=\"javascript:showMore('"+id+"', '"+text+"')\" >See all "+text+"</a>");
}