    //
    // Create site/room to image map
    //
    var DTmap  = new Array();
    var VPmap  = new Array();
    var OSPmap = new Array();

    //
    //  DT Locations
    //
    DTmap['DT grand stairway']	= 'mapArtLadder.gif';
    DTmap['208 A']	= 'mapForum.gif';
    DTmap['253']	= 'mapForum.gif';
    DTmap['301'] 	= 'mapOceanic.gif';
    DTmap['302'] 	= 'mapAsian.gif';
    DTmap['303'] 	= 'mapAsian.gif';
    DTmap['304'] 	= 'mapTextiles.gif';
    DTmap['305'] 	= 'mapTextiles.gif';
    DTmap['309'] 	= 'mapAmerican.gif';
    DTmap['310'] 	= 'mapAmerican.gif';
    DTmap['311'] 	= 'mapNativeAmerican.gif';
    DTmap['312'] 	= 'mapNativeAmerican.gif';
    DTmap['313'] 	= 'mapNativeAmerican.gif';
    DTmap['314'] 	= 'mapNativeAmerican.gif';
    DTmap['315'] 	= 'mapNativeAmerican.gif';
    DTmap['350 A'] 	= 'mapModern.gif';
    DTmap['350 B'] 	= 'mapModern.gif';
    DTmap['350 E'] 	= 'mapModern.gif';
    DTmap['350 F'] 	= 'mapModern.gif';
    DTmap['350 G'] 	= 'mapModern.gif';
    DTmap['350 H'] 	= 'mapModern.gif';
    DTmap['350 J'] 	= 'mapAmerican.gif';
    DTmap['350 L'] 	= 'mapModern.gif';
    DTmap['350 M'] 	= 'mapModern.gif';
    DTmap['350 N'] 	= 'mapModern.gif';
    DTmap['350 P'] 	= 'mapModern.gif';
    DTmap['350 Q'] 	= 'mapModern.gif';
    DTmap['401'] 	= 'mapSpecialx.gif';
    DTmap['402'] 	= 'mapSpecialx.gif';
    DTmap['403'] 	= 'mapSpecialx.gif';
    DTmap['404'] 	= 'mapSpecialx.gif';
    DTmap['405'] 	= 'mapSpecialx.gif';
    DTmap['411'] 	= 'mapSpecialx.gif';
    DTmap['412'] 	= 'mapSpecialx.gif';
    DTmap['416'] 	= 'mapSpecialx.gif';
    DTmap['417'] 	= 'mapSpecialx.gif';
    DTmap['450 C'] 	= 'mapAfrican.gif';
    DTmap['450 D'] 	= 'mapAfrican.gif';
    DTmap['450 E'] 	= 'mapAncient.gif';
    DTmap['450 EF'] 	= 'mapAncient.gif';
    DTmap['450 F'] 	= 'mapAncient.gif';
    DTmap['450 G'] 	= 'mapEuropean.gif';
    DTmap['450 H'] 	= 'mapEuropean.gif';
    DTmap['450 J'] 	= 'mapEuropean.gif';
    DTmap['450 L'] 	= 'mapEuropean.gif';
    DTmap['450 M'] 	= 'mapEuropean.gif';
    DTmap['450 P'] 	= 'mapAfrican.gif';
    DTmap['450 Q'] 	= 'mapAfrican.gif';
    DTmap['450 R'] 	= 'mapAfrican.gif';
    DTmap['450 S'] 	= 'mapEuropean.gif';
    DTmap['488'] 	= 'mapEuropean.gif';

    //
    //  VP Locations
    //
    VPmap['Garden Court'] 	= '';
    VPmap['N1'] 	= '';
    VPmap['N2'] 	= '';
    VPmap['N3'] 	= '';
    VPmap['N4'] 	= '';
    VPmap['S1'] 	= '';
    VPmap['S2'] 	= '';
    VPmap['S3'] 	= '';
    VPmap['S4'] 	= '';
    VPmap['S5'] 	= '';

    //
    //  OSP Locations
    //
    OSPmap['Ackerley Family East Meadow'] 	= '';
    OSPmap['Allen Family Foundation Plaza'] 	= '';
    OSPmap['Gates Amphitheater'] 		= '';
    OSPmap['Ketcham Families Grove'] 		= '';
    OSPmap['Kreielsheimer North Meadow'] 	= '';
    OSPmap['Paccar Pavilion'] 			= '';
    OSPmap['TPL Terrace'] 			= '';
    OSPmap['Valley'] 				= '';
    OSPmap['West Meadow'] 			= '';


function getMap( site, room ){

    var mapImage = "";

    switch( site ){
	case "DT":	mapImage = DTmap[ room ];	break;
	case "VP":	mapImage = VPmap[ room ];	break;
	case "OSP":	mapImage = OSPmap[ room ];	break;
	default:					break;
    }
   if( mapImage == undefined ) mapImage = "";
   return mapImage;
}

