
/* To remove the right border of the last child of the menu bottom menus*/
document.observe("dom:loaded", function() {
        $$('div.header_top ul li:last-child a','table.data_listing thead tr th:last-child').each (function (element){
        element.setStyle({border:'0px'});
    });

 $$('div.navigation ul li:last-child a').each (function (element){
        element.setStyle({padding:'6px 0px'});
    });



});



