// global variables to define size of imagemap and diameter of hotspots

var mapwidth = 521;                // width of imagemap in pixels
var mapheight = 345;               // height of imagemap
var diameter = 9;                  // diameter of circular hotspots

document.write('<img src=\"../images/newbldg/newhighlight.jpg\" width=\"521\" height=\"345\" border=\"0\" usemap=\"#BuildingSketch\"><map name=\"BuildingSketch\">');
document.write('<area href=\"light_scoop.htm\" onmouseover=\"this.T_TITLE=\'Light Scoop\';return escape(\'<img src=../images/building/lightscoop_sm.jpg>\')\" shape=\"poly\" coords=\"257,30,369,78,369,12,257,8\" alt=\"light scoop\">');
document.write('<area href=\"green_roof.htm\" onmouseover=\"this.T_TITLE=\'Green Roof\';return escape(\'<img src=../images/building/greenroof_sm.jpg>\')\" shape=\"poly\" coords=\"53,89,137,70,138,50,252,28,252,2,129,16,111,39,58,66\" alt=\"green roof 1\">');
document.write('<area href=\"place_just_right.htm\" onmouseover=\"this.T_TITLE=\'A Place Just Right\';this.T_OFFSETX=-235;return escape(\'<img src=../images/building/roof_edge_sm.jpg>\')\" shape=\"poly\" coords=\"374,71,373,33,469,75,470,115\" alt=\"hart office building view\">');
document.write('<area href=\"bamboo_floors.htm\" onmouseover=\"this.T_TITLE=\'Bamboo Floors\';return escape(\'<img src=../images/building/bamboo_floors_sm.jpg>\')\" shape=\"poly\" coords=\"139,164,251,150,249,179,139,185\" alt=\"floors\">');
document.write('<area href=\"office_desks.htm\" onmouseover=\"this.T_TITLE=\'Eco-Friendly Office Desks\';return escape(\'<img src=../images/building/office_desks_sm.jpg>\')\" shape=\"poly\" coords=\"46,145,44,202,124,193,124,131\" alt=\"office desk\">');
document.write('<area href=\"first_floor.htm\" onmouseover=\"this.T_TITLE=\'First Floor\';return escape(\'<img src=../images/newbldg/1st_plan_sm.gif>\')\" shape=\"poly\" coords=\"256,191,256,276,381,268,383,210\" alt=\"1st floorplan\">');
document.write('<area href=\"basement.htm\" onmouseover=\"this.T_TITLE=\'Basement\';return escape(\'<img src=../images/newbldg/basement_plan_sm.gif>\')\" shape=\"poly\" coords=\"228,293,210,334,418,321,342,295,325,285\" alt=\"basement plan\">');
document.write('<area href=\"heating_cooling.htm\" onmouseover=\"this.T_TITLE=\'Geothermal Heating and Cooling\';return escape(\'<img src=../images/building/geothermal_sm.jpg>\')\" shape=\"poly\" coords=\"73,231,220,217,212,282,75,275\" alt=\"heating\">');
document.write('<area href=\"second_floor.htm\" onmouseover=\"this.T_TITLE=\'Second Floor\';return escape(\'<img src=../images/newbldg/2nd_plan_sm.gif>\')\" shape=\"poly\" coords=\"255,181,256,107,381,141,382,206\" alt=\"2nd plan\">');
document.write('<area href=\"third_floor.htm\" onmouseover=\"this.T_TITLE=\'Third Floor\';return escape(\'<img src=../images/newbldg/3rd_plan_sm.gif>\')\" shape=\"poly\" coords=\"258,38,259,105,382,135,380,86\" alt=\"3rd plan\">');
document.write('<area href=\"windows.htm\" onmouseover=\"this.T_TITLE=\'Energy Efficient Windows\';this.T_OFFSETX=-180;return escape(\'<img src=../images/building/windows_sm.jpg>\')\" shape=\"poly\" coords=\"424,132,427,217,460,219,458,146\" alt=\"windows\">');
document.write('<area href=\"bikes_shower.htm\" onmouseover=\"this.T_TITLE=\'Bicycle Parking\';this.T_OFFSETX=-180;return escape(\'<img src=../images/newbldg/joe_bike_sm.jpg>\')\" shape=\"poly\" coords=\"469,271,504,274,503,234,468,235\" alt=\"bikes\">');
document.write('<area href=\"ada_comply.htm\" onmouseover=\"this.T_TITLE=\'Ramp and Elevator\';this.T_OFFSETX=-235;return escape(\'<img src=../images/building/ADAramp_sm.jpg>\')\" shape=\"poly\" coords=\"404,302,432,320,500,300,445,273,394,271,351,274,349,291\" alt=\"ramp\">');
document.write('</map>');


////////////////  GLOBAL TOOPTIP CONFIGURATION  /////////////////////
var ttAbove       = false;        // tooltip above mousepointer? Alternative: true
var ttBgColor     = "#f0fff0";
var ttBgImg       = "";           // path to background image;
var ttBorderColor = "#006400";
var ttBorderWidth = 1;
var ttDelay       = 0;          // time span until tooltip shows up [milliseconds]
var ttFontColor   = "#000000";
var ttFontFace    = "verdana,arial,helvetica,sans-serif";
var ttFontSize    = "13px";
var ttFontWeight  = "normal";     // alternative: "bold";
var ttLeft        = false;        // tooltip on the left of the mouse? Alternative: true
var ttOffsetX     = 12;           // horizontal offset of left-top corner from mousepointer
var ttOffsetY     = 15;           // vertical offset                   "
var ttOpacity     = 100;          // opacity of tooltip in percent (must be integer between 0 and 100)
var ttPadding     = 4;            // spacing between border and content
var ttShadowColor = "";
var ttShadowWidth = 0;
var ttStatic      = false;        // tooltip NOT move with the mouse? Alternative: true
var ttSticky      = false;        // do NOT hide tooltip on mouseout? Alternative: true
var ttTemp        = 0;            // time span after which the tooltip disappears; 0 (zero) means "infinite timespan"
var ttTextAlign   = "left";
var ttTitleColor  = "#ffffff";    // color of caption text
var ttWidth       = 1;
////////////////////  END OF TOOLTIP CONFIG  ////////////////////////

//////////////  TAGS WITH TOOLTIP FUNCTIONALITY  ////////////////////
// List may be extended or shortened:
var tt_tags = new Array("a","area","b","big","caption","center","code","dd","div","dl","dt","em","h1","h2","h3","h4","h5","h6","i","img","input","li","map","ol","p","pre","s","small","span","strike","strong","sub","sup","table","td","th","tr","tt","u","var","ul","layer");
/////////////////////////////////////////////////////////////////////