var thisJQ = jQuery.noConflict(); 
thisJQ(document).ready(function(){
        var elems = thisJQ('#bottomitems a');
        for(var n=0;n<elems.length;n++){
                var h = thisJQ(elems[n]).attr('href');
                if(h == undefined || h == '' || h == 'mailto:'){
                        thisJQ(elems[n]).css('display', 'none');
                }
        }
}); 
