// Supplemental JavaScript Stuff

function popLiveChat(){
    var width = 650;
    var height = 676;
    var left = Math.floor((screen.availWidth - width) / 2);
    var top = Math.floor((screen.availHeight - height) / 2);
    var windowFeatures = "width=" + width + ", height=" + height + ", menubar=no, toolbar=no, scrollbars=auto, resizable=yes," + "left=" + left + ", top=" + top + "screenX=" + left + ", screenY=" + top;
    chatWindow = window.open("chat.aspx", "ChatWindow", windowFeatures);
}



$(document).ready(function() {
	
// Additional footer items
  // $('#footer a').attr('target', '_blank');
  $('#bbb').attr('title', 'BBB Business Review').attr('target', '_blank');
  $('#nahb').attr('title', 'National Association of Home Builders').attr('target', '_blank');
  
});

