$('div#footer a.black').live('click', function(event){
var _url = $(this).attr('href');
        window.open(_url, 'legalWindow', 'status=0, toolbar=0, location=0, menubar=0, directories=0, resizeable=0, scrollbars=1, width=840');
        event.preventDefault();
        return false;
});


$('div#footer a.gray').live('click', function(event){
var _url = $(this).attr('href');
        window.open(_url, 'legalWindow', 'status=0, toolbar=0, location=0, menubar=0, directories=0, resizeable=0, scrollbars=1, width=840');
        event.preventDefault();
        return false;
});


