$(document).ready(function()
{
   $('li.exterior a').click(function(){
            window.open(this.href);
            return false;
   });

    $('a.exterior').click(function(){
            window.open(this.href);
            return false;
   });
});
