// JavaScript Document : Groove Entertainment Library (custom)
// backslash used for non-standard multiline strings


// Data array for venue location
var venueLocation = new Array(43);

venueLocation[0]  = "";
venueLocation[1]  = "<span style='margin-left:  5px;'>Veronique, Longwood Towers, 2011, Brookline, MA</span>";
venueLocation[2]  = "<span style='margin-left:105px;'>Black Rock Country Club, Spring 2011, Hingham, MA</span>";
venueLocation[3]  = "<span style='margin-left:105px;'>Charles Hotel, Spring 2011, (Harvard Square, Cambridge) Boston, MA</span>";
venueLocation[4]  = "<span style='margin-left:205px;'>Kirkbrae Country Club, Spring 2011, Lincoln, RI</span>";
venueLocation[5]  = "<span style='margin-left:405px;'>Taj, 2011, Boston, MA</span>";
venueLocation[6]  = "<span style='margin-left:305px;'>The Lenox Hotel, 2011, Boston, MA</span>";

venueLocation[7]  = "<span style='margin-left:  5px;'>Hotel Marlowe, 2011, (Cambridge) Boston, MA</span>";
venueLocation[8]  = "<span style='margin-left:105px;'>Hyatt Harborside, 2011, Boston, MA</span>";
venueLocation[9]  = "<span style='margin-left:205px;'>State Room, 2011, Boston, MA</span>";
venueLocation[10] = "<span style='margin-left:305px;'>Charles Hotel, 2010, Boston, MA</span>";
venueLocation[11] = "<span style='margin-left:305px;'>Hyatt, 2010, Newport, RI</span>";
venueLocation[12] = "<span style='margin-left:305px;'>Searles Castle, 2010, Windham, NH</span>";

venueLocation[13] = "<span style='margin-left:  5px;'>Danversport Yacht Club, Danversport, MA</span>";
venueLocation[14] = "<span style='margin-left:105px;'>Renaissance Country Club, 2010, Haverhill, MA</span>";
venueLocation[15] = "<span style='margin-left:205px;'>Granite Links Country Club, 2010, Quincy, MA</span>";
venueLocation[16] = "<span style='margin-left:305px;'>Castleton, 2010, Windham, NH</span>";
venueLocation[17] = "<span style='margin-left:305px;'>Andover Country Club, 2010, Andover, MA</span>";
venueLocation[18] = "<span style='margin-left:305px;'>Saphire Estate, 2010, Boston (Sharon), MA</span>";

venueLocation[19] = "<span style='margin-left:  5px;'>Boston Public Library, 2010, Boston, MA</span>";
venueLocation[20] = "<span style='margin-left:105px;'>Fairmont Copley Plaza Hotel, 2010, Boston, MA</span>";
venueLocation[21] = "<span style='margin-left:205px;'>Andover Country Club, 2010, Andover, MA</span>";
venueLocation[22] = "<span style='margin-left:105px;'>The Villa, 2010 &ndash; Grand Ballroom, Boston (East Bridgewater), MA</span>";
venueLocation[23] = "<span style='margin-left:105px;'>The Villa, 2010 &ndash; Madeira Room, Boston (East Bridgewater), MA</span>";
venueLocation[24] = "<span style='margin-left:205px;'>Valentine\'s Day 2010 Wedding, Taj, Boston, MA</span>";

venueLocation[25] = "<span style='margin-left:  5px;'>Lake View Pavilion, 2010, Foxborough, MA</span>";
venueLocation[26] = "<span style='margin-left:105px;'>Hilton Hotel, 2010, Woburn-Boston, MA</span>";
venueLocation[27] = "<span style='margin-left:205px;'>Millennium Bostonian Hotel, Boston, MA</span>";
venueLocation[28] = "<span style='margin-left:305px;'>Royal Sonesta Hotel, Cambridge, MA</span>";
venueLocation[29] = "<span style='margin-left:305px;'>Boston Harbor Hotel, Boston, MA</span>";
venueLocation[30] = "<span style='margin-left:305px;'>The Fairmont Copley Hotel, Boston, MA</span>";

venueLocation[31] = "<span style='margin-left:  5px;'>Lake View Pavilion, Foxborough, MA</span>";
venueLocation[32] = "<span style='margin-left:105px;'>Belle Mer Hotel, Newport, RI</span>";
venueLocation[33] = "<span style='margin-left:205px;'>Taj, Boston, MA</span>";
venueLocation[34] = "<span style='margin-left:305px;'>Private Estate, Cohassett, MA</span>";
venueLocation[35] = "<span style='margin-left:205px;'>Sheraton Commander, Harvard Square, Cambridge, MA</span>";
venueLocation[36] = "<span style='margin-left:305px;'>The Westin, Waltham-Boston, MA</span>";

venueLocation[37] = "<span style='margin-left:  5px;'>InterContinental Hotel, Boston, MA</span>";
venueLocation[38] = "<span style='margin-left:105px;'>Hyatt Regency Hotel, Cambridge, MA</span>";
venueLocation[39] = "";
venueLocation[40] = "";
venueLocation[41] = "";
venueLocation[42] = "";

// function to display venue icon location upon onmouseover & not display upon onmouseout
function displayLocation(rowNumber,actionNumber)
{

  if (actionNumber > 0 && actionNumber <= venueLocation.length)    // display location in correct place on page
  {
     document.getElementById('venueLocationRow' + rowNumber).innerHTML = venueLocation[actionNumber];
  }
  else    // empty all locations
  {
     document.getElementById('venueLocationRow1').innerHTML  = '';
	 document.getElementById('venueLocationRow2').innerHTML  = '';
	 document.getElementById('venueLocationRow3').innerHTML  = '';
	 document.getElementById('venueLocationRow4').innerHTML  = '';
	 document.getElementById('venueLocationRow5').innerHTML  = '';
	 document.getElementById('venueLocationRow6').innerHTML  = '';
	 document.getElementById('venueLocationRow7').innerHTML  = '';
  }
}



