var browser;
var version;

function bodyWidth() {
	browser_id();
	if (browser=="Microsoft Internet Explorer") {
		
		if (version >= 4) {
			document.getElementById('content').style.width="800px";
			document.getElementById('month').style.width="800px";
			document.getElementById('day_r1c1').style.width="116px";
			document.getElementById('day_r1c2').style.width="113px";
			document.getElementById('day_r1c3').style.width="113px";
			document.getElementById('day_r1c4').style.width="113px";
			document.getElementById('day_r1c5').style.width="113px";
			document.getElementById('day_r1c6').style.width="113px";
			document.getElementById('day_r1c7').style.width="119px";
/*			
			for (i=1; i<8; i++) {
				document.getElementById('cal_r'+i+'c1').style.width="114px";
				document.getElementById('cal_r'+i+'c2').style.width="114px";
				document.getElementById('cal_r'+i+'c3').style.width="114px";
				document.getElementById('cal_r'+i+'c4').style.width="114px";
				document.getElementById('cal_r'+i+'c5').style.width="114px";
				document.getElementById('cal_r'+i+'c6').style.width="114px";
				document.getElementById('cal_r'+i+'c7').style.width="114px";
			}

			for (i=2; i<8; i++) {
				document.getElementById('cal_r'+i+'c1').style.height="70px";
				document.getElementById('cal_r'+i+'c2').style.height="70px";
				document.getElementById('cal_r'+i+'c3').style.height="70px";
				document.getElementById('cal_r'+i+'c4').style.height="70px";
				document.getElementById('cal_r'+i+'c5').style.height="70px";
				document.getElementById('cal_r'+i+'c6').style.height="70px";
				document.getElementById('cal_r'+i+'c7').style.height="70px";
			}

			
			document.getElementById('cal_r7c7').style.width="110px";
*/
		} 
	}

}

function browser_id() {
	browser=navigator.appName;
	var b_version=navigator.appVersion;
	version=parseFloat(b_version);
}

function highlightToday() {
	document.getElementById('cal_r6c1').style.backgroundColor="yellow";
}

function closeeventdiv() {
	document.getElementById('eventdiv').style.display = "none";
}

//***************************************************************************************************************************
function write_to_layer(browser,layer,text){
	var lyr;
	switch (browser){
		case 1:
			lyr = document.layers[layer];
			lyr.document.open();
			lyr.document.write(text);
			lyr.document.close();
		case 2:
			lyr = document.all[layer];
			lyr.innerHTML = text;
		case 3:
			lyr = document.getElementById(layer);
			lyr.innerHTML = text;
	}
}			

function mevent(layer,status){
	if (layer=='menus' && status=='off') {
		layervisible('aboutus_menu', 'off');
		layervisible('caribbeancommunity_menu', 'off');
		layervisible('jamaica_menu', 'off');
	}
}

function layervisible(layer,status){
	var on_or_off;
	browser_id();
	if (status == 'on')
		on_or_off = 'visible';
	else
		on_or_off = 'hidden';
			
	switch (browser){
		case 1:
			document.layers[layer].visibility=on_or_off;					
		case 2:
			document.all[layer].style.visibility=on_or_off;			
		case 3:
			document.getElementById(layer).style.visibility=on_or_off;
	}
}

function layerzindex(browser,layer,numbah){
			
	switch (browser){
		case 1:
			document.layers[layer].zindex=numbah;					
		case 2:
			document.all[layer].style.zindex=numbah;			
		case 3:
			document.getElementById(layer).style.zindex=numbah;
	}
}

function layerheightwidth(browser,layer,height,width){
	switch (browser){
		case 1:
			document.layers[layer].height=height;					
		case 2:
			document.all[layer].style.height=height;
			document.all[layer].style.width=width;			
		case 3:
			document.getElementById(layer).style.height=height;
	}
}

//<![CDATA[
function mapload(location) {
	if (GBrowserIsCompatible()) 
		{
		browser_id();
		layervisible("aboutus_menu",'off');
		layervisible("caribbeancommunity_menu",'off');
		layervisible("jamaica_menu",'off');
		layervisible("cal",'off');
		layervisible("cal_fore",'off');
		
		var map = new GMap2(document.getElementById("displaypane"));
		
		switch(location) {
			case 'st_olaf':
				var marker = new GMarker(new GLatLng(42.406312,-83.162663));
        		var stolaf_address="Saint Olaf Lutheran Church<br/>" + "15701 James Couzens Freeway<br/>" + "Detroit, MI";
		 
				map.setCenter(new GLatLng(42.406312,-83.162663), 15);
				map.addOverlay(marker);
				map.addControl(new GSmallMapControl());
				marker.openInfoWindowHtml(stolaf_address);
				break;
				
			case 'serbianhall':
				var marker = new GMarker(new GLatLng(42.441808,-83.024457));
        		var stolaf_address="American Serbian Memorial Hall<br/>" + "19940 Van Dyke Street<br/>" + "Detroit, MI";
		 
				map.setCenter(new GLatLng(42.441808,-83.024457), 15);
				map.addOverlay(marker);
				map.addControl(new GSmallMapControl());
				marker.openInfoWindowHtml(stolaf_address);
				break;
				
			case 'churches':
				var olaf = new GMarker(new GLatLng(42.406312,-83.162663),{title:"Saint Olaf Lutheran"});
				var apostolic = new GMarker(new GLatLng(42.420974,-83.253179),{title:"Old Pathway Apostolic"});
				var bethany = new GMarker(new GLatLng(42.436988,-83.248891),{title:"Bethany Pembroke Chapel"});
				var fullgospel = new GMarker(new GLatLng(42.408732,-83.200479),{title:"Full Gospel Assembly"});
				var cyprian = new GMarker(new GLatLng(42.348685,-83.11533),{title:"St. Cyprian Episcopal"});
				
				
				map.setCenter(new GLatLng(42.377061,-83.112602), 11);
				map.addControl(new GSmallMapControl());
				map.addOverlay(olaf);
				map.addOverlay(bethany);
				map.addOverlay(fullgospel);
				map.addOverlay(apostolic);
				map.addOverlay(cyprian);
				break;
				
			case 'clubs':
				var archie = new GMarker(new GLatLng(42.416198,-83.194973),{title:"Archer's"});
				var clubhouse = new GMarker(new GLatLng(42.369111,-83.0768),{title:"Clubhouse Tavern"});
				var trenchtown = new GMarker(new GLatLng(42.349787,-83.059476),{title:"Trenchtown"});
				var tropicalhut = new GMarker(new GLatLng(42.399637,-83.140135),{title:"Tropical Hut"});
				
				
				map.setCenter(new GLatLng(42.377061,-83.112602), 11);
				map.addControl(new GSmallMapControl());
				map.addOverlay(archie);
				map.addOverlay(clubhouse);
				map.addOverlay(trenchtown);
				map.addOverlay(tropicalhut);
				break;
				
			case 'grocers':
				var africarib = new GMarker(new GLatLng(42.402672,-83.222508),{title:"African Caribbean Restaurant"});
				var tropicalfood = new GMarker(new GLatLng(42.415964,-83.210149),{title:"Caribbean & African Tropical Food"});
				var kitchen = new GMarker(new GLatLng(42.416807,-83.165796),{title:"Caribbean Kitchen"});
				var irie = new GMarker(new GLatLng(42.30738,-83.488798),{title:"Irie Caribbean Cuisine"});
				var jamjam = new GMarker(new GLatLng(42.430346,-83.215556),{title:"Jamaica Jamaica Restaurant & Bakery"});
				var ronos = new GMarker(new GLatLng(42.416544,-83.182208),{title:"Rono's Caribbean Restaurant"});
				var seafood = new GMarker(new GLatLng(42.400754,-83.179035),{title:"Seafood Plus Restaurant"});
				var jerk = new GMarker(new GLatLng(42.415212,-82.938697),{title:"Strictly Jerk Restaurant"});
				var tropicaltaste = new GMarker(new GLatLng(42.416835,-83.177726),{title:"Tropical Taste Restaurant & Groceries"});
				
				map.setCenter(new GLatLng(42.377061,-83.112602), 10);
				map.addControl(new GSmallMapControl());
				map.addOverlay(africarib);
				map.addOverlay(tropicalfood);
				map.addOverlay(kitchen);
				map.addOverlay(irie);
				map.addOverlay(jamjam);
				map.addOverlay(ronos);
				map.addOverlay(seafood);
				map.addOverlay(jerk);
				map.addOverlay(tropicaltaste);
				break;
				
			case 'gmeet':
				var marker = new GMarker(new GLatLng(42.416136,-83.19699));
        		var stolaf_address="JAM Meeting Location @ 5 PM<br/>" + "15310 W McNichols Road<br/>" + "Detroit, MI";
		 
				map.setCenter(new GLatLng(42.416136,-83.19699), 15);
				map.addOverlay(marker);
				map.addControl(new GSmallMapControl());
				marker.openInfoWindowHtml(stolaf_address);
				break;
				
			default:
				map.setCenter(new GLatLng(42.33166,-83.04792), 15);
				map.addControl(new GSmallMapControl());
				break;		
		}
      }
}
//]]>


function menudisplay(id){
	browser_id();
	var layer;
	var text;

switch(id) {
	case 'aboutus':
		layer="aboutus_menu";
		layervisible("caribbeancommunity_menu",'off');
		layervisible("jamaica_menu",'off');
		layervisible(layer,'on');
		text="<OL><LI><a href=\"javascript:pagedisplay('profile')\">profile</a></LI><LI><a href=\"javascript:pagedisplay('membership')\">membership</a></LI><LI><a href=\"javascript:pagedisplay('board')\">board of Directors</a></LI><LI><a href=\"javascript:pagedisplay('officers')\"> officers </a></LI><LI><a href=\"javascript:pagedisplay('jampics')\">JAM in pictures</a></LI></OL>";
		if (browser==2) {
			text="<OL style=\"margin-left:7px; margin-bottom:0px;\"><LI><a href=\"javascript:pagedisplay('profile')\">profile</a></LI><LI><a href=\"javascript:pagedisplay('membership')\">membership</a></LI><LI><a href=\"javascript:pagedisplay('board')\">board of directors</a></LI><LI><a href=\"javascript:pagedisplay('officers')\"> officers </a></LI><LI><a href=\"javascript:pagedisplay('jampics')\">JAM in pictures</a></LI></OL>";
			}
		
		break;

	case 'caribbeancommunity':
			layer="caribbeancommunity_menu";
			layervisible("aboutus_menu",'off');
			layervisible("jamaica_menu",'off');
			layervisible(layer,'on');
			text="<OL><LI><a href=\"javascript:pagedisplay('associations');\">associations</a></LI><LI><a href=\"javascript:pagedisplay('church')\">churches</a></LI><LI><a href=\"javascript:pagedisplay('clubs')\">clubs/bars</a></LI><LI><a href=\"javascript:pagedisplay('grocers')\">grocers & restaurants</a></LI><LI><a href=\"javascript:pagedisplay('radio')\">radio programmes</a></LI></OL>";
			if (browser==2) {
				text="<OL style=\"margin-left:9px; margin-bottom:0px;\"><LI><a href=\"javascript:pagedisplay('associations')\">associations</a></LI><LI><a href=\"javascript:pagedisplay('church')\">churches</a></LI><LI><a href=\"javascript:pagedisplay('clubs')\">clubs/bars</a></LI><LI><a href=\"javascript:pagedisplay('grocers')\">grocers & restaurants</a></LI><LI><a href=\"javascript:pagedisplay('radio')\">radio programmes</a></LI></OL>";
			}
			break;

		case 'jamaica':
			layer="jamaica_menu";
			layervisible("aboutus_menu",'off');
			layervisible("caribbeancommunity_menu",'off');
			layervisible(layer,'on');
			
			text="<OL><LI><a href=\"javascript:pagedisplay('consulates')\">jamaican consulates</a></LI><LI><a href=\"javascript:pagedisplay('embassy')\">jamaican embassy</a></LI></OL>";
			if (browser==2) {
				text="<OL style=\"margin-left:9px; margin-bottom:0px;\"><LI><a href=\"javascript:pagedisplay('consulates')\">jamaican consulates</a></LI><LI><a href=\"javascript:pagedisplay('embassy')\">jamaican embassy</a></LI></OL>";
			}
			break;

		default:
			layer="displaypane";
			text = "unknown selection";
			break;
		}
		write_to_layer(browser,layer,text);

}


function pagedisplay(id){
	browser_id();
	var cal_events;
	var spacer = "";
	var spacer2 = "";

	if (browser == 2) spacer = "<img src=\"./images/small_spacer.gif\" border=0 height=1px width=1px><br>";
	if (browser == 3) spacer2 = "<img src=\"./images/small_spacer.gif\" border=0 height=2px width=1px><br>"; 
	
	switch(id) {
	    case 'home':
	        layervisible("aboutus_menu", 'off');
	        layervisible("caribbeancommunity_menu", 'off');
	        layervisible("jamaica_menu", 'off');
	        layervisible("cal", 'off');
	        layervisible("cal_fore", 'off');

	        text = spacer + "<h1 style=\"text-align:center;\">Ninth Annual Scholarship Awards</h1><h5 style=\"text-align:center; font-style:italic;\">Guest Speaker</h5><h3 style=\"margin-top:-13px; text-align:center;\">The Honorable Cynthia Gray Hathaway</h3><h5 style=\"margin-top:-15px; text-align:center;\">Judge, 3rd Judicial Court</h5><p style=\"text-align:center; font-size:12px;\">12:00 PM � 3:00 PM<br />Saturday, October 24, 2009<br /><br />American Serbian Memorial Hall<br />19940 Van Dyke Street<br />Detroit, Michigan<br /><br />Lunch & Entertainment<br />DJ Music<br /><br />(Semi-Formal Attire)<br /><br />$25 per person<br /><br />313.454.9867</p>";
	        text_ad = "<p STYLE= \" background-color:black; font-size:14px; font-weight:bold; text-align:center; color:#337733; margin-top:0px;\"><img src=\"images/small_spacer.gif\" border=0 height=10px width=1px;><br />Thank You<br />For a successful 2009 Parade!</p><p STYLE= \"margin-top:-20px; background-color:black; font-size:12px; color:white; font-weight:bold; text-align:center;\"><br /><br />Our sincere thanks to all our supporters and especially our float participants for a wonderful parade.<br /><br />Next meeting is Sunday, September 13th. Please join us and let us hear from you...<br /><img src=\"images/small_spacer.gif\" border=0 height=15px width=1px;></p>" + spacer2 + "<a href=\"http://www.jam1.org/jclarke.php?www.prudential.com/us/jerome.clarke\" target=\"_blank\"><img src=\"images/Jerome_Clark.gif\" width=\"180\" height=\"150\" border=\"0\" alt=\"Jerome Clarke Prudential Banner\"></a>";
	        
	        write_to_layer(browser, "adpane", text_ad);

	        break;

		case 'profile':
			layervisible("aboutus_menu",'off');
			layervisible("caribbeancommunity_menu",'off');
			layervisible("jamaica_menu",'off');
			layervisible("cal",'off');
			layervisible("cal_fore",'off');
			text = spacer + "<p style=\"font-size:12px;\"><b>The Jamaican Association of Michigan (JAM)</b> began as a social club in 1995 and served to bring Jamaicans in the Metropolitan Detroit area together to engage in cultural activities indigenous to Jamaica and the Caribbean. It was shortly thereafter recognized that the association could not solely focus on Jamaicans but must also serve the community in which its members reside. Today, JAM is an IRS certified 501(c)(3) tax-exempt non-profit organization.<br><br>The purposes for which the association is organized are exclusively charitable and educational within the meaning of section 501(c)(3) of the Internal Revenue Code. Specifically,</p><UL style=\"font-size:12px;\" class=\"list\"><LI>To develop, foster, and maintain programs to meet the educational and economical needs of its members and the Metropolitan Detroit Community at large,</LI><LI>To be an advocate for the rights of Jamaicans and residents of the State of Michigan,</LI><LI>To bridge the cultural divide through dialogue, workshops, and programs representing the rich heritage of Jamaica,</LI><LI>To provide educational and financial assistance to improve the lives of those living in Jamaica, and</LI><LI>To serve as the primary gateway in Michigan for information on resources relevant to Jamaica and Jamaicans.</LI></UL><p style=\"font-size:12px;\">JAM is constantly being challenged with the needs of the community in which it exists. From immigration issues of Jamaicans residing in Detroit to the education of the youths, the needs of the community is great. It is JAM's vision to continue to actively participate, support, and sponsor programs that enrich lives, educate youths, and provide cultural awareness.</p>";
	 		menu = "aboutus_menu";
			break;

		case 'membership':
			layervisible("aboutus_menu",'off');
			layervisible("caribbeancommunity_menu",'off');
			layervisible("jamaica_menu",'off');
			layervisible("cal",'off');
			layervisible("cal_fore",'off');
			text=spacer + "<p STYLE= \"font-size:20px; font-weight:bold; text-align:center; color:#669966;\">Membership</p><p>Membership is open to any persons supporting the organization�s purposes, regardless of sex, race, color, creed, or national origin. Applicants must be at least 18 years old to be eligible for general membership. <br><br>Applicants younger than 18 years shall be classified as student members and will not be eligible to hold office or vote.<br><br>An <a href=\"./membership_form.pdf\" target=\"blank\">application for membership</a> must be submitted with an entrance fee of $10.00 (not applicable to annual dues) or be sent to the secretary by a member, who shall report it at the next regular meeting of the organization.</p><p STYLE= \"font-size:20px; font-weight:bold; text-align:center; color:#669966;\">Dues</p><p>There shall be an initiation fee of $10.00 and an annual membership fee of $40.00. Dues may be paid in installments provided the total amount is paid by December of the current year. Any member may pay a lump sum of $500.00 for life membership after 2 years of consecutive membership.</p><p STYLE= \"font-size:14px; text-align:center\"><a HREF=\"javascript:pagedisplay('contactus')\">Contact JAM about membership</a></p>";
			break;

		case 'board':
			layervisible("aboutus_menu",'off');
			layervisible("caribbeancommunity_menu",'off');
			layervisible("jamaica_menu",'off');
			layervisible("cal",'off');
			layervisible("cal_fore",'off');
			text = spacer + "<p STYLE= \"font-size:20px; font-weight:bold; text-align:center; color:#669966;\">Board of Directors</p><p STYLE= \"font-size:12px; text-align:center;\">Joyce El-Ali<br><br>Evadney Clarke-Thomas<br><br>Patrick Gordon<br><br>Sonya Harris<br><br>Winston Hudson<br><br>Elaine Jenkins<br><br>Natalya Lalor<br><br>Resna McCain<br><br>Rev. Michael Sewell</p>";
			break;		

		case 'jampics':
			layervisible("aboutus_menu",'off');
			layervisible("caribbeancommunity_menu",'off');
			layervisible("jamaica_menu",'off');
			layervisible("cal",'off');
			layervisible("cal_fore",'off');
			text = "<center><img src=\"./images/jaminpics_base.jpg\" border=0></center>";
			text_ad = "<H1 STYLE= \"font-size:20px; font-weight:bold; text-align:center;\">JAM in Pictures</H1><br /><br /><FORM name=\"photos\" action=\"...\" method=\"post\"><select style=\"width:200px; align:center;\" name=\"album\" onchange=\"javascript:pagedisplay(this.value)\"><option value=\"dd_blank\">Select an Album...</option><option value=\"dd_blank\">&nbsp;</option><option value=\"fashion09_pics\">2009 Fashion Show</option><option value=\"dd_blank\">&nbsp;</option><option value=\"carival08_pics\">2008 Carival</option><option value=\"dd_blank\">&nbsp;</option><option value=\"xmas07_pics\">2007 Children's Christmas Party</option><option value=\"gala07_pics\">2007 Scholarship Gala</option><option value=\"carival07_pics\">2007 Carival</option><option value=\"dd_blank\">&nbsp;</option><option value=\"xmas06_pics\">2006 Children's Christmas Party</option><option value=\"gala06_pics\">2006 Scholarship Gala</option><option value=\"carival06_pics\">2006 Carival</option><option value=\"fashion06_pics\">2006 Fashion Show</option><option value=\"dd_blank\">&nbsp;</option><option value=\"xmas05_pics\">2005 Children's Christmas Party</option><option value=\"gala05_pics\">2005 Scholarship Gala</option></select></form>";
			
			text_ad_nodropdown = "<H1 STYLE= \"font-size:20px; font-weight:bold; text-align:center;\">JAM in Pictures</H1><br><a href=\"javascript:pagedisplay('carival08_pics')\">2008 Carival</a><br><hr /><br><a href=\"javascript:pagedisplay('xmas07_pics')\">2007 Children's Christmas Party</a><br><br><a href=\"javascript:pagedisplay('gala07_pics')\">2007 Scholarship Gala</a><br><br><a href=\"javascript:pagedisplay('carival07_pics')\">2007 Carival</a><br><hr /><br><a href=\"javascript:pagedisplay('xmas06_pics')\">2006 Children's Christmas Party</a><br><br><a href=\"javascript:pagedisplay('gala06_pics')\">2006 Scholarship Gala</a><br><br><a href=\"javascript:pagedisplay('carival06_pics')\">2006 Carival</a><br><br><a href=\"javascript:pagedisplay('fashion06_pics')\">2006 Fashion Show</a><br><hr /><br><a href=\"javascript:pagedisplay('xmas05_pics')\">2005 Children's Christmas Party</a><br><br><a href=\"javascript:pagedisplay('gala05_pics')\">2005 Scholarship Gala</a>";

			if (browser==2) {
			    text_ad = "<H1 STYLE= \"margin-top:10px; font-size:20px; font-weight:bold; text-align:center;\">JAM in Pictures</H1><br /><br /><FORM name=\"photos\" action=\"...\" method=\"post\"><select style=\"width:200px; align:center;\" name=\"album\" onchange=\"javascript:pagedisplay(this.value)\"><option value=\"dd_blank\">Select an Album...</option><option value=\"dd_blank\">&nbsp;</option><option value=\"fashion09_pics\">2009 Fashion Show</option><option value=\"dd_blank\">&nbsp;</option><option value=\"carival08_pics\">2008 Carival</option><option value=\"dd_blank\">&nbsp;</option><option value=\"xmas07_pics\">2007 Children's Christmas Party</option><option value=\"gala07_pics\">2007 Scholarship Gala</option><option value=\"carival07_pics\">2007 Carival</option><option value=\"dd_blank\">&nbsp;</option><option value=\"xmas06_pics\">2006 Children's Christmas Party</option><option value=\"gala06_pics\">2006 Scholarship Gala</option><option value=\"carival06_pics\">2006 Carival</option><option value=\"fashion06_pics\">2006 Fashion Show</option><option value=\"dd_blank\">&nbsp;</option><option value=\"xmas05_pics\">2005 Children's Christmas Party</option><option value=\"gala05_pics\">2005 Scholarship Gala</option></select></form>";
				}
			write_to_layer(browser,"adpane",text_ad);
			break;


            case 'dd_blank':
    layervisible("aboutus_menu", 'off');
    layervisible("caribbeancommunity_menu", 'off');

    layervisible("jamaica_menu", 'off');

    layervisible("cal", 'off');

    layervisible("cal_fore", 'off');

    text = spacer + "<p style=\"margin-top:100px; margin-left:200px; font-size=14px;\">Please select a photo album...</p>";

    break;


          case 'fashion09_pics':
    layervisible("aboutus_menu", 'off');
    layervisible("caribbeancommunity_menu", 'off');
            layervisible("jamaica_menu", 'off');
            layervisible("cal", 'off');
            layervisible("cal_fore", 'off');
            text = spacer + "<object style=\"z-index:0;\" classid=\"clsid:d27cdb6e-ae6d-11cf-96b8-444553540000\" codebase=\"http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0\" width=\"592\" height=\"408\" id=\"fashion09_preloader\" align=\"middle\"><param name=\"movie\" value=\"images/fashion09/fashion09_preloader.swf\" /><param name=\"quality\" value=\"high\" /><param name=\"wmode\" value=\"opaque\" /><param name=\"menu\" value=\"false\" /><param name=\"bgcolor\" value=\"#dddddd\" /><embed src=\"images/fashion09/fashion09_preloader.swf\" quality=\"high\" wmode=\"opaque\" menu=\"false\" bgcolor=\"#dddddd\" width=\"592\" height=\"408\" name=\"fashion09_preloader\" align=\"middle\" type=\"application/x-shockwave-flash\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" /></object>";
            break;


        case 'carival08_pics':
			layervisible("aboutus_menu",'off');
			layervisible("caribbeancommunity_menu",'off');
			layervisible("jamaica_menu",'off');
			layervisible("cal",'off');
			layervisible("cal_fore",'off');
			text = spacer + "<object style=\"z-index:0;\" classid=\"clsid:d27cdb6e-ae6d-11cf-96b8-444553540000\" codebase=\"http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0\" width=\"592\" height=\"408\" id=\"carival08_preloader\" align=\"middle\"><param name=\"movie\" value=\"images/carival08/carival08_preloader.swf\" /><param name=\"quality\" value=\"high\" /><param name=\"wmode\" value=\"opaque\" /><param name=\"menu\" value=\"false\" /><param name=\"bgcolor\" value=\"#dddddd\" /><embed src=\"images/carival08/carival08_preloader.swf\" quality=\"high\" wmode=\"opaque\" menu=\"false\" bgcolor=\"#dddddd\" width=\"592\" height=\"408\" name=\"carival08_preloader\" align=\"middle\" type=\"application/x-shockwave-flash\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" /></object>";
			
			break;

		case 'carival07_pics':
			layervisible("aboutus_menu",'off');
			layervisible("caribbeancommunity_menu",'off');
			layervisible("jamaica_menu",'off');
			layervisible("cal",'off');
			layervisible("cal_fore",'off');
			text = spacer + "<object classid=\"clsid:d27cdb6e-ae6d-11cf-96b8-444553540000\" codebase=\"http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0\" width=\"592\" height=\"408\" id=\"carival07_preloader\" align=\"middle\"><param name=\"allowScriptAccess\" value=\"sameDomain\" /><param name=\"movie\" value=\"./images/carival07/carival07_preloader.swf\" /><param name=\"quality\" value=\"high\" /><param name=\"bgcolor\" value=\"#dddddd\" /><param name=\"wmode\" value=\"opaque\"><embed src=\"./images/carival07/carival07_preloader.swf\" quality=\"high\" bgcolor=\"#dddddd\" width=\"592\" height=\"408\" name=\"carival07_preloader\" align=\"middle\" wmode=\"opaque\" allowScriptAccess=\"sameDomain\" type=\"application/x-shockwave-flash\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\"/></object>";
			break;

		case 'carival06_pics':
			layervisible("aboutus_menu",'off');
			layervisible("caribbeancommunity_menu",'off');
			layervisible("jamaica_menu",'off');
			layervisible("cal",'off');
			layervisible("cal_fore",'off');
			text = spacer + "<object classid=\"clsid:d27cdb6e-ae6d-11cf-96b8-444553540000\" codebase=\"http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0\" width=\"592\" height=\"408\" id=\"carival06_preloader\" align=\"middle\"><param name=\"allowScriptAccess\" value=\"sameDomain\" /><param name=\"movie\" value=\"./images/carival06/carival06_preloader.swf\" /><param name=\"quality\" value=\"high\" /><param name=\"bgcolor\" value=\"#dddddd\" /><param name=\"wmode\" value=\"opaque\"><embed src=\"./images/carival06/carival06_preloader.swf\" quality=\"high\" bgcolor=\"#dddddd\" width=\"592\" height=\"408\" name=\"carival06_preloader\" align=\"middle\" wmode=\"opaque\" allowScriptAccess=\"sameDomain\" type=\"application/x-shockwave-flash\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\"/></object>";
			break;

		case 'fashion06_pics':
			layervisible("aboutus_menu",'off');
			layervisible("caribbeancommunity_menu",'off');
			layervisible("jamaica_menu",'off');
			layervisible("cal",'off');
			layervisible("cal_fore",'off');
			text = spacer + "<object classid=\"clsid:d27cdb6e-ae6d-11cf-96b8-444553540000\" codebase=\"http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0\" width=\"592\" height=\"408\" id=\"fashion06_preloader\" align=\"middle\"><param name=\"allowScriptAccess\" value=\"sameDomain\" /><param name=\"movie\" value=\"./images/fashion06/fashion06_preloader.swf\" /><param name=\"quality\" value=\"high\" /><param name=\"bgcolor\" value=\"#dddddd\" /><param name=\"wmode\" value=\"opaque\"><embed src=\"./images/fashion06/fashion06_preloader.swf\" quality=\"high\" bgcolor=\"#dddddd\" width=\"592\" height=\"408\" name=\"fashion06_preloader\" align=\"middle\" wmode=\"opaque\" allowScriptAccess=\"sameDomain\" type=\"application/x-shockwave-flash\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\"/></object>";
			break;

		case 'gala05_pics':
			layervisible("aboutus_menu",'off');
			layervisible("caribbeancommunity_menu",'off');
			layervisible("jamaica_menu",'off');
			layervisible("cal",'off');
			layervisible("cal_fore",'off');
			text = spacer + "<object classid=\"clsid:d27cdb6e-ae6d-11cf-96b8-444553540000\" codebase=\"http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0\" width=\"592\" height=\"408\" id=\"gala05_preloader\" align=\"middle\"><param name=\"allowScriptAccess\" value=\"sameDomain\" /><param name=\"movie\" value=\"./images/gala05/gala05_preloader.swf\" /><param name=\"quality\" value=\"high\" /><param name=\"bgcolor\" value=\"#dddddd\" /><param name=\"wmode\" value=\"opaque\"><embed src=\"./images/gala05/gala05_preloader.swf\" quality=\"high\" bgcolor=\"#dddddd\" width=\"592\" height=\"408\" name=\"gala05_preloader\" align=\"middle\" wmode=\"opaque\" allowScriptAccess=\"sameDomain\" type=\"application/x-shockwave-flash\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\"/></object>";
			break;

		case 'gala06_pics':
			layervisible("aboutus_menu",'off');
			layervisible("caribbeancommunity_menu",'off');
			layervisible("jamaica_menu",'off');
			layervisible("cal",'off');
			layervisible("cal_fore",'off');
			text = spacer + "<object classid=\"clsid:d27cdb6e-ae6d-11cf-96b8-444553540000\" codebase=\"http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0\" width=\"592\" height=\"408\" id=\"gala06_preloader\" align=\"middle\"><param name=\"allowScriptAccess\" value=\"sameDomain\" /><param name=\"movie\" value=\"./images/gala06/gala06_preloader.swf\" /><param name=\"quality\" value=\"high\" /><param name=\"bgcolor\" value=\"#dddddd\" /><param name=\"wmode\" value=\"opaque\"><embed src=\"./images/gala06/gala06_preloader.swf\" quality=\"high\" bgcolor=\"#dddddd\" width=\"592\" height=\"408\" name=\"gala06_preloader\" align=\"middle\" wmode=\"opaque\" allowScriptAccess=\"sameDomain\" type=\"application/x-shockwave-flash\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\"/></object>";
			break;

		case 'gala07_pics':
			layervisible("aboutus_menu",'off');
			layervisible("caribbeancommunity_menu",'off');
			layervisible("jamaica_menu",'off');
			layervisible("cal",'off');
			layervisible("cal_fore",'off');
			text = spacer + "<object classid=\"clsid:d27cdb6e-ae6d-11cf-96b8-444553540000\" codebase=\"http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0\" width=\"592\" height=\"408\" id=\"gala07_preloader\" align=\"middle\"><param name=\"allowScriptAccess\" value=\"sameDomain\" /><param name=\"movie\" value=\"./images/gala07/gala07_preloader.swf\" /><param name=\"quality\" value=\"high\" /><param name=\"bgcolor\" value=\"#dddddd\" /><param name=\"wmode\" value=\"opaque\"><embed src=\"./images/gala07/gala07_preloader.swf\" quality=\"high\" bgcolor=\"#dddddd\" width=\"592\" height=\"408\" name=\"gala07_preloader\" align=\"middle\" wmode=\"opaque\" allowScriptAccess=\"sameDomain\" type=\"application/x-shockwave-flash\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\"/></object>";
			break;

		case 'xmas05_pics':
			layervisible("aboutus_menu",'off');
			layervisible("caribbeancommunity_menu",'off');
			layervisible("jamaica_menu",'off');
			layervisible("cal",'off');
			layervisible("cal_fore",'off');
			text = spacer + "<object classid=\"clsid:d27cdb6e-ae6d-11cf-96b8-444553540000\" codebase=\"http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0\" width=\"592\" height=\"408\" id=\"xmas05_preloader\" align=\"middle\"><param name=\"allowScriptAccess\" value=\"sameDomain\" /><param name=\"movie\" value=\"./images/xmas05/xmas05_preloader.swf\" /><param name=\"quality\" value=\"high\" /><param name=\"bgcolor\" value=\"#dddddd\" /><param name=\"wmode\" value=\"opaque\"><embed src=\"./images/xmas05/xmas05_preloader.swf\" quality=\"high\" bgcolor=\"#dddddd\" width=\"592\" height=\"408\" name=\"xmas05_preloader\" align=\"middle\" wmode=\"opaque\" allowScriptAccess=\"sameDomain\" type=\"application/x-shockwave-flash\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\"/></object>";
			break;

		case 'xmas06_pics':
			layervisible("aboutus_menu",'off');
			layervisible("caribbeancommunity_menu",'off');
			layervisible("jamaica_menu",'off');
			layervisible("cal",'off');
			layervisible("cal_fore",'off');
			text = spacer + "<object classid=\"clsid:d27cdb6e-ae6d-11cf-96b8-444553540000\" codebase=\"http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0\" width=\"592\" height=\"408\" id=\"xmas06_preloader\" align=\"middle\"><param name=\"allowScriptAccess\" value=\"sameDomain\" /><param name=\"movie\" value=\"./images/xmas06/xmas06_preloader.swf\" /><param name=\"quality\" value=\"high\" /><param name=\"bgcolor\" value=\"#dddddd\" /><param name=\"wmode\" value=\"opaque\"><embed src=\"./images/xmas06/xmas06_preloader.swf\" quality=\"high\" bgcolor=\"#dddddd\" width=\"592\" height=\"408\" name=\"xmas06_preloader\" align=\"middle\" wmode=\"opaque\" allowScriptAccess=\"sameDomain\" type=\"application/x-shockwave-flash\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\"/></object>";
			break;

		case 'xmas07_pics':
			layervisible("aboutus_menu",'off');
			layervisible("caribbeancommunity_menu",'off');
			layervisible("jamaica_menu",'off');
			layervisible("cal",'off');
			layervisible("cal_fore",'off');
			text = spacer + "<object classid=\"clsid:d27cdb6e-ae6d-11cf-96b8-444553540000\" codebase=\"http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0\" width=\"592\" height=\"408\" id=\"xmas07_preloader\" align=\"middle\"><param name=\"allowScriptAccess\" value=\"sameDomain\" /><param name=\"movie\" value=\"./images/xmas07/xmas07_preloader.swf\" /><param name=\"quality\" value=\"high\" /><param name=\"bgcolor\" value=\"#dddddd\" /><param name=\"wmode\" value=\"opaque\"><embed src=\"./images/xmas07/xmas07_preloader.swf\" quality=\"high\" bgcolor=\"#dddddd\" width=\"592\" height=\"408\" name=\"xmas07_preloader\" align=\"middle\" wmode=\"opaque\" allowScriptAccess=\"sameDomain\" type=\"application/x-shockwave-flash\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\"/></object>";
			break;

		case 'officers':
			layervisible("aboutus_menu",'off');
			layervisible("caribbeancommunity_menu",'off');
			layervisible("jamaica_menu",'off');
			layervisible("cal",'off');
			layervisible("cal_fore",'off');
			text=spacer + "<p STYLE= \"font-size:20px; font-weight:bold; text-align:center; color:#669966;\">Officers</p><p STYLE= \"font-size:12px; text-align:center;\">Ms. Elaine Jenkins<br><i>President</i><br><br>Reverend Michael Sewell<br><i>Vice President</i><br><br>Mrs. Evadney Clarke-Thomas<br><i>Treasurer</i><br><br>Ms. Natalya Lalor<br><i>Recording Secretary</i><br><br>Mrs. Sonya Harris<br><i>Corresponding Secretary</i></p>";
			break;

		case 'calendar':
			layervisible("aboutus_menu",'off');
			layervisible("caribbeancommunity_menu",'off');
			layervisible("jamaica_menu",'off');
			layervisible("cal",'on');
			layervisible("cal_fore",'on');

			cal_events = "";
			text = ""					
			break;

		case 'associations':
			layervisible("aboutus_menu",'off');
			layervisible("caribbeancommunity_menu",'off');
			layervisible("jamaica_menu",'off');
			layervisible("cal",'off');
			layervisible("cal_fore",'off');
			text=spacer + "<p STYLE= \"font-size:20px; font-weight:bold; text-align:center; color:#669966;\">Caribbean Associations in Metro Detroit</p><p class=\"left\"><i><b>Bahamian Association</b></i><br>Kevin Forbes - President<br>313.415.0403<br><br><i><b>Barbados Association</b></i><br>Les Burnett - President<br>248.592.0588 &middot; lburn78446@aol.com<br><br><i><b>Belize Association of Michigan</b></i><br>Roland Bood - President<br>248.761.1432<br><br><i><b>Caribbean Cultural and Carnival Organization - CCCO</b></i><br>Joyce El-Ali - President<br><a href=\"http://www.myccco.com\" target=\"blank\">www.myccco.com</a><br><br><i><b>Cavaliers Football Club</b></i><br>Kevin H. Smith - President<br>248-842-0816<br><a target=\"blank\" href=\"http://www.cavaliersfc.com\">www.cavaliersfc.com</a></p><p class=\"right\"><i><b>Guyana Association</b></i><br>Thomas Sertima - President<br>313.931.0238<br><br><i><b>Haitian Network</b></i><br>Dr. Nelson - President<br>248.945.1503<br><a target=\"blank\" href=\"http://www.hngd.com\">www.hngd.com</a><br><br><i><b>Jamaica Children's Aid Organization</b></i><br>Yvonne Burks - Vice President<br>313.894.2342<br><br><i><b>Trinidad & Tobago Association</b></i><br>Knolly Bascomb - President<br>313.584.2435<br><br><i><b>West Indian American Association - WIAA</b></i><br>313.893.3311</p>";
			break;

		case 'church':
			layervisible("aboutus_menu",'off');
			layervisible("caribbeancommunity_menu",'off');
			layervisible("jamaica_menu",'off');
			layervisible("cal",'off');
			layervisible("cal_fore",'off');
			text=spacer + "<p STYLE= \"font-size:20px; font-weight:bold; text-align:center; color:#669966;\">Churches </p><p STYLE= \"font-size:12px; font-weight:bold; text-align:center; color:red; margin-top:-20px;\">Listings are for informational purposes only and does not represent JAM's endorsement.</p><p STYLE= \"font-size:12px; font-weight:bold; text-align:center; color:#669966;\"><a href=\"javascript:mapload('churches')\">Click to display churches on Google Map</a></p><br><p class=\"left\"><i><b>Bethany-Pembroke Chapel</b></i><br>19901 Burt Road<br>Detroit, MI<br>(313) 533 - 6165<br><br><i><b>Full Gospel Opendoor Assembly</b></i><br>15600 Puritan Avenue<br>Detroit, MI<br>(313) 272 - 9025<br><br><i><b>Old Pathway Apostolic Faith Church</b></i><br>18041 Bentler<br>Detroit, MI<br>(313) 531 - 3829</p><p class=\"right\"><i><b><a href=\"http://www.scypriansdet.org\" target=\"blank\">St. Cyprian Episcopal Church</a></b></i><br>6114 28th Street<br>Detroit, MI<br>(313) 896 - 7515<br>scyprians@aol.com<br><br><i><b>St. Olaf Lutheran Church</b></i><br>15701 James Couzens Freeway<br>Detroit, MI<br>(313) 864 - 0088</p>";  
			break;

		case 'clubs':
			layervisible("aboutus_menu",'off');
			layervisible("caribbeancommunity_menu",'off');
			layervisible("jamaica_menu",'off');
			layervisible("cal",'off');
			layervisible("cal_fore",'off');
			text=spacer + "<p STYLE= \"font-size:20px; font-weight:bold; text-align:center; color:#669966;\" colspan=2>Caribbean Clubs</p><p STYLE= \"font-size:12px; font-weight:bold; text-align:center; color:red; margin-top:-20px;\">Listings are for informational purposes only and does not represent JAM's endorsement.</p><p STYLE= \"font-size:12px; font-weight:bold; text-align:center; color:#669966;\"><a href=\"javascript:mapload('clubs')\">Click to display clubs on Google Map</a></p><br><p class=\"left\"><i><b>Archer's</b></i><br>15145 W McNichols Rd<br>Detroit, MI<br>313.837.0515<br><i>Friday & Saturday Nights</i><br><br><b><i>Clubhouse Tavern</i></b><br>@ The Fisher Building - lower level<br>3011 W. Grand Blvd<br>Detroit, MI<br>313.717.3782<br><i>Saturday Nights</i></p><p class=\"right\"><b><i>Trenchtown Live</i></b><br>3919 Woodward Avenue<br>Detroit, MI<br>313.610.0926 or 313.836.8686<br><i>Friday & Saturday Nights</i><br><br><b><i>Tropical Hut Lounge</i></b><br>14925 Livernois Avenue<br>Detroit, MI<br>313.861.5340<br><i>Thursday, Friday, & Saturday Nights</i></p>";
			break;

		case 'grocers':
			layervisible("aboutus_menu",'off');
			layervisible("caribbeancommunity_menu",'off');
			layervisible("jamaica_menu",'off');
			layervisible("cal",'off');
			layervisible("cal_fore",'off');
			text=spacer + "<p STYLE= \"font-size:20px; font-weight:bold; text-align:center; color:#669966;\">Grocers & Restaurants</p><p STYLE= \"font-size:12px; font-weight:bold; text-align:center; color:red; margin-top:-20px;\">Listings are for informational purposes only and does not represent JAM's endorsement.</p><p STYLE= \"font-size:12px; font-weight:bold; text-align:center; color:#669966;\"><a href=\"javascript:mapload('grocers')\">Click to display grocers and restaurants on Google Map</a></p><p class=\"left\"><i><b>African/Caribbean Restaurant</b></i><br>18456 Grand River Blvd<br>Detroit, MI &middot; <i><u>313.272.5120</u></i><br><br><i><b>Caribbean & African Tropical Food Store</b></i><br>16926 West McNichols Road<br>Detroit, MI  &middot; <i><u>313.838.6637</u></i><br><br><i><b>Caribbean Kitchen</b></i><br>10500 West McNichols Road<br>Detroit, MI &middot; <i><u>313.345.3746</u></i><br><br><i><b>Irie Caribbean Cuisine</b></i><br>45580 Cherry Hill Road<br>Canton, MI  &middot; <i><u>734.844.8892/734.844.8893 (fax)</u></i><br><br><i><b>Jamaica Jamaica Restaurant & Bakery</b></i><br>17550 West Seven Mile Road<br>Detroit, MI &middot; <i><u>313.534.3226</u></i></p><p class=\"right\"><i><b>Rono's Caribbean Restaurant</b></i><br>14001 West McNichols Road<br>Detroit, MI &middot; <i><u>313.531.0660</u></i><br><br><i><b>Seafood Plus</b></i><br>15090 Schaefer Highway<br>Detroit, MI &middot <i><u>313.836.1300</u></i><br><br><i><b>Strictly Jerk</b></i><br>16849 Harper Avenue<br>Detroit, MI &middot; <i><u>313.881.1212</u></i><br><br><i><b>Tropical Taste Restaurant & Groceries</b></i><br>13412 West McNichols Road<br>Detroit, MI &middot; <i><u>313.345.1655</u></i></p>";
			break;

		case 'radio':
			layervisible("aboutus_menu",'off');
			layervisible("caribbeancommunity_menu",'off');
			layervisible("jamaica_menu",'off');
			layervisible("cal",'off');
			layervisible("cal_fore",'off');
			text=spacer + "<p STYLE= \"font-size:20px; font-weight:bold; text-align:center; color:#669966;\">Radio Programmes</p><p STYLE= \"font-size:12px; text-align:center;\"><i><b>Michael Julien's Global Mix</b></i><br>WDET 101.9FM<br>Sundays 10 pm - 2 am<br><br><i><b>Irie Vibes Radio Detroit</b></i><br><a href=\"http://www.irievibesradiodetroit.com\" target=\"blank\">www.irievibesradiodetroit.com</a></p>";
			break;

		case 'consulates':
			layervisible("aboutus_menu",'off');
			layervisible("caribbeancommunity_menu",'off');
			layervisible("jamaica_menu",'off');
			layervisible("cal",'off');
			layervisible("cal_fore",'off');
			text=spacer + "<p style=\"font-size:18; text-align:center; color:#669966;\">Closest Jamaican Consulate</p><br><p style=\"font-size:14; text-align:center;\"><b>Consulate of Jamaica - Chicago</b></a><br>4655 South Dr. Martin Luther King Jr. Drive<br>Suite 201<br>Chicago, Illinois 60653<br>773.373.8988<br><b>HONORARY CONSUL: MR LLOYD L HYDE</b><br><a href=\"http://www.jamaicanconsulatechicago.org/\"  target=\"blank\">www.jamaicanconsulatechicago.org</a></p>";
			break; 

		case 'embassy':
			layervisible("aboutus_menu",'off');
			layervisible("caribbeancommunity_menu",'off');
			layervisible("jamaica_menu",'off');
			layervisible("cal",'off');
			layervisible("cal_fore",'off');
			text=spacer + "<p style=\"font-size:18; text-align:center; color:#669966\">Jamaican Embassy</p><br><p style=\"font-size:14; text-align:center\"><b>Jamaican Embassy - United States of America</b><br>1520 New Hampshire Avenue<br>N.W. Washington D.C. 20036<br>Tel: 202.452.0660; Fax: 202.452.0081<br><b>AMBASSADOR: HIS EXCELLENCY ANTHONY JOHNSON</b><br><a href=\"http://www.embassyofjamaica.org\" target=\"blank\">www.embassyofjamaica.org</a></p>";
			break; 

		case 'contactus':
			layervisible("aboutus_menu",'off');
			layervisible("caribbeancommunity_menu",'off');
			layervisible("jamaica_menu",'off');
			layervisible("cal",'off');
			layervisible("cal_fore",'off');
			
			text_ad = "<img src=\"./images/adoptahwy.png\" border=0>";
			write_to_layer(browser,"adpane",text_ad);
			
			
			text="<form style=\"font-size:12px; text-align:center; margin-top:20px;\" method=\"post\" name=\"mailinglists\" action=\"/cgi-bin/webcommentscript.pl\"><input type=\"hidden\" name=\"subject\" value=\"Suggestion/Comment/Question From JAM's website\"><input type=\"hidden\" name=\"required\" value=\"email\"><input type=\"hidden\" name=\"redirect\" value=\"http://www.jam1.org\"><IMG width=16 height=1 border=0 src=\"./images/small_spacer.gif\">Your Name: <INPUT type=\"text\" name=\"realname\"><br><br>Email Address: <INPUT type=\"text\" name=\"email\"><br><IMG width=240 height=1 border=0 src=\"./images/small_spacer.gif\"><INPUT type=\"checkbox\" name=\"add_me_to_mailing_list\" value=\"YES\"><font color=#336633 size=2><i><b>Add me to JAM's Mailing List.</i></b></font><br><IMG width=400 height=10 border=0 src=\"./images/small_spacer.gif\"><br>Comments/Suggestions/Questions:<br><textarea name=\"comments\" wrap=\"virtual\" cols=\"40\" rows=\"8\"></textarea><br> <INPUT type=\"submit\" name=\"submit\" value=\"submit\"onclick=\"alert('Your comments/questions have been submitted to JAM. Thank You!')\"></form><p style=\"font-size:12px; text-align:center;\">Jamaican Association of Michigan<br>P.O. Box 11440<br>Detroit, MI 48211-11440<br>313.454.9867<br><a HREF=\"mailto:jam@jam1.org\">jam@jam1.org</a></p>";
			break;

		case 'links':
			layervisible("aboutus_menu",'off');
			layervisible("caribbeancommunity_menu",'off');
			layervisible("jamaica_menu",'off');
			layervisible("cal",'off');
			layervisible("cal_fore",'off');
			text=spacer + "<p style=\"font-size:18px; text-align:center; color:#669966;\">Local Caribbean Related Websites</p><p style=\"text-align:left; font-size:14px; line-height:25px;\"><a target=\"blank\" href=\"http://www.caribbeanconnection2002.com\">www.caribbeanconnection2002.com ..... Caribbean entertainment talent agency.</a><br><a target=\"blank\" href=\"http://www.cavaliersfc.com\">www.cavaliersfc.com ..... Metropolitan Detroit based Caribbean soccer club.</a><br><a target=\"blank\" HREF=\"http://www.detroitreggae.com\">www.detroitreggae.com ..... Latest reggae clubs' news and events.</a><br><a target=\"blank\" href=\"http://www.hngd.com\">www.hngd.com ..... Haitian Association.</a><br><a target=\"blank\" HREF=\"http://www.myccco.com\">www.myccco.com ..... Carnival & Parade News and Info.</a><br><a target=\"blank\" HREF=\"http://www.riverlime.com\">www.riverlime.com ..... Grassroot organization empowering Caribbean people in the Midwest.</a><br><a target=\"blank\" HREF=\"http://www.strictlyrootsmusic.net\">www.strictlyrootsmusic.net ..... Caribbean Retail Shop.</a></p>";
			break;

		case 'gmeet':
			layervisible("aboutus_menu",'off');
			layervisible("caribbeancommunity_menu",'off');
			layervisible("jamaica_menu",'off');
			layervisible("cal",'off');
			layervisible("cal_fore",'off');
			text="";
			mapload('gmeet');
			break;

			case 'adoptahighway':
			layervisible("aboutus_menu",'off');
			layervisible("caribbeancommunity_menu",'off');
			layervisible("jamaica_menu",'off');
			layervisible("cal",'off');
			layervisible("cal_fore",'off');
			text=spacer + "<center><img src=\"./images/adoptahighway_2.jpg\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<img src=\"./images/adoptahighway_1.jpg\"></center><br><p style=\"text-align:justify; font-size:14px;\">JAM volunteers in the Michigan's Adopt-A-Highway Program to pick up trash on I-275 from 6 mile to 8 mile roads as part of its community outreach initiative. Join us in keeping our community clean. <a href=\"javascript:pagedisplay('contactus')\">Contact us</a> for further information.</p>";
			break;


case 'indepchurch09':

    layervisible("aboutus_menu", 'off');

    layervisible("caribbeancommunity_menu", 'off');

    layervisible("jamaica_menu", 'off');

    layervisible("cal", 'off');

    layervisible("cal_fore", 'off');

    text = spacer + "<center><img src=\"images/indepchurch2009.png\" border=\"0\" width=\"590px\" height=\"408px\"></center>";

    break;



        case 'indepchurch08':
			layervisible("aboutus_menu",'off');
			layervisible("caribbeancommunity_menu",'off');
			layervisible("jamaica_menu",'off');
			layervisible("cal",'off');
			layervisible("cal_fore",'off');
			text = spacer + "<p class=\"church\"><b> Fifth Annual Jamaica Independence's Church Service</b><br>On Sunday August 3, JAM will celebrate the Island of Jamaica's Independence through a nondenominational prayer and worship service. This year's service promises to be outstanding as we are pleased to have Dr. Johnathan David as our guest speaker.<br><br><img src=\"./images/dr_johnathan_david.png\" align=\"left\" border=1>Dr. Jonathan David is the Founder & Senior Pastor of Full Gospel Centre and Praise Celebration Centre in Muar Malaysia. He is also the Founder and Presiding Apostle of the Apostolic Network of Prophetic Churches and Ministries (ANPCM) which is a network of governing territorial churches and ministries across the nations.<br><br>Dr. David has been recognized by apostles and prophets around the world for his contribution to God's present move by his popular book Apostolic Strategies Affecting Nations. His message is one of kingdom, dominion, and victorious living.<br><br>As the leader of a large international network of church leaders, a successful business entrepreneur, and a prominent author, Dr. David releases wisdom and practical keys to accurately execute the plans of God with the stature, authority and power of Christ.<br><br>Please join us on Sunday, August 3rd at Saint Olaf Lutheran Church, 15701 James Couzens Freeway, Detroit, Michigan <a href=\"javascript:mapload('st_olaf')\">(click here for location on Google map)</a>. Worship service begins at 5:30pm followed by a small banquet with light refreshments at 7:00pm.<br><br><i>At midnight 5th August 1962 the British Flag was lowered and the Jamaican Flag was hoisted for the first time. On the 6th of August 1962 Jamaica was given its independence. <a target=\"blank\" href=\"http://www.jnht.com/jamaica/hist_independ.php\">(http://www.jnht.com/jamaica/hist_independ.php)</a></i></p>";
			break;
			
			
		case 'gala08':
			layervisible("aboutus_menu",'off');
			layervisible("caribbeancommunity_menu",'off');
			layervisible("jamaica_menu",'off');
			layervisible("cal",'off');
			layervisible("cal_fore",'off');
			text=spacer + "<p style=\"font-size:13px;\"><b>Eight Annual Scholarship Gala</b><br>Our Eight Annual Scholarship Gala is scheduled for Saturday October 18 at <a href=\"javascript:mapload('serbianhall')\">Serbian Hall</a>. Each year JAM awards several scholarships to graduating high school seniors, pursuing a vocational or a bachelors degree, based on academic accomplishments and community service.<br><br>To date we have awarded 28 scholarships ranging from $200 to $800. Last year winners were Kaiya Montague (Wayne State University majoring in Communications and Dance), Piaget Ventus (Michigan State University majoring in Theatre and Pre-Law), and Aissa'sa Hyde (Lawrence Tech University majoring in Psychology).<br><br>The gala generally features a guest speaker and introduces our scholarship recipients to you, their boosters. We sincerely hope you will take advantage of this very popular evening to not only support the talents and accomplishments of these exceptional students but to dialogue and enjoy a evening of laughs, food, and music.<br><br>Past speakers include The Honourable Errol Morrison <i>(2007, President of the University of Technology in Jamaica)</i>, The Honourable Fitz A. Jackson <i>(2006, Minister of State: Ministry of Finance and Planning)</i>, Dr. Gordon Shirley <i>(2005, Jamaica's Ambassador to the United States of America)</i>, Mr. Ismael Ahmed <i>(2003, Executive Director of ACCESS)</i>, and other distinquished persons. <br><br>Ticket prices are $45 per person. Seating is open but full tables accomodating 8 guests can be reserved under one name, such as an organization, for $360.<br><br>Please call us to reserve your tickets today (313.454.9867).</p>";
			
			text_ad = "<img src=\"./images/gala08.png\" border=0>";
			write_to_layer(browser,"adpane",text_ad);
			
			break;

		case 'xmas08':
			layervisible("aboutus_menu",'off');
			layervisible("caribbeancommunity_menu",'off');
			layervisible("jamaica_menu",'off');
			layervisible("cal",'off');
			layervisible("cal_fore",'off');
			text=spacer + "<p style=\"font-size:13px;\"><b>Fourteenth Annual Childrens Free Christmas Party</b><br>JAM is hosting its fourteenth Annual Children Free Christmas Party on Sunday, 14th December 2008 from 4PM to 8PM at <a href=\"javascript:mapload('st_olaf')\">St. OLAF Lutheran Church's One Love Center, 15701 James Couzens Highway, in Detroit.</a><br><br>For the past thirteen years this event has provided children from Detroit and its surrounding areas with a Caribbean flavored Christmas inclusive of free toys, food, entertainment, local clowns & mascots, and a chance to talk to and be photographed with Santa Claus.<br><br>In 2007, over 400 kids received gifts, food, and enjoyed the festivities of the event. This year we anticipate an increase in the number of attendees, and have also added a few more activities in an effort to get the children even more involved.<br><br>Please consider being a sponsor of this year's Children's Christmas Party. Your contribution will help to offset the cost of gifts, food, and entertainment. In return JAM will advertise your company or name in the souvenir program as a sponsor. JAM is a 501(c)(3) non-profit and as such your contribution is tax deductible.</p>";
			
			text_ad = "<img src=\"./images/xmas08.gif\" border=0>";
			write_to_layer(browser,"adpane",text_ad);
			
			break;

		case 'carival08':
			layervisible("aboutus_menu",'off');
			layervisible("caribbeancommunity_menu",'off');
			layervisible("jamaica_menu",'off');
			layervisible("cal",'on');
			layervisible("cal_fore",'off');
			
			text = "<p style=\"float:left;\"><img src=\"./images/srmisscarival08.jpg\" border=1></p><p style=\"float:right;\"><img align=\"right\" src=\"./images/jrmisscarival08.jpg\" border=1></p>";
			text_cal = spacer + "<p style=\"text-align:center; font-size:16px; color:#000000;\">CONGRATULATIONS</p><p style=\"text-align:justify; font-size:12px; color:#000000; padding-left:193px; padding-right:210px;\">JAM extends congratulations to Miss Nikama West <i>(left)</i> and Miss Alexandra McLenan <i>(right)</i>; winners of senior and junior miss Carival, respectively; both represented the Island of Jamaica.<br><br>Nikama is a freshman at Grand Valley State University with ambitions of becoming a pediatrician.<br><br>Alexandra is currently attending Renaissance High School with ambitions of becoming a lawyer and an author.<br><br>Again, congratulations ladies. Your hard work and talents are truly exemplary and an inspiration to us all.</p>";
			write_to_layer(browser,"cal",text_cal);
			
			break;

		case 'kidsconcert':
			layervisible("aboutus_menu",'off');
			layervisible("caribbeancommunity_menu",'off');
			layervisible("jamaica_menu",'off');
			layervisible("cal",'off');
			layervisible("cal_fore",'off');
			text="<center><img src=\"./images/infinityfreeconcertweb5.jpg\" width=360px height=407px></center>";
			break;

		case 'kidsday08':
			layervisible("aboutus_menu",'off');
			layervisible("caribbeancommunity_menu",'off');
			layervisible("jamaica_menu",'off');
			layervisible("cal",'off');
			layervisible("cal_fore",'off');
			text="<center><img src=\"./images/infinityparkweb5.jpg\" width=360px height=407px></center>";
			break;

		case 'donate':
			layervisible("aboutus_menu",'off');
			layervisible("caribbeancommunity_menu",'off');
			layervisible("jamaica_menu",'off');
			layervisible("cal",'off');
			layervisible("cal_fore",'off');
			text=spacer + "<p style=\"text-align:justify; font-size:14px\">The Jamaican Association of Michigan is an IRS certified tax exempt 501(c)(3) non-profit organization composed of community minded men and women. JAM purpose is five fold, as stated in our profile, but is simply to raise and provide funding for educational and cultural activities.</p><p style=\"text-align:justify; font-size:14px\">There are three events each year that highlights our calendar: The Detroit International Caribbean Festival & Parade, JAM's Scholarship Gala, and JAM's Children's Free Christmas Party.</p><p style=\"text-align:justify; font-size:14px\">We are reliant on contributions in both time and funds to make these programmes successful. JAM thanks you in advance for your generosity and support. Your consideration and thoughtfulness is truly appreciated.</p><p style=\"text-align:justify; font-size:14px\">Please make all checks payable to Jamaican Association of Michigan. Include your name, address, telephone number, with your contribution and/or donation and mail to:</p><p style=\"text-align:center; font-size:14px\">Jamaican Association of Michigan<br>P.O. Box 11440<br>Detroit, MI 48211-1440<br><br>For further information, please call 313.454.9867</p>";
			 break;
			 			
		case 'fishfry':
			layervisible("aboutus_menu",'off');
			layervisible("caribbeancommunity_menu",'off');
			layervisible("jamaica_menu",'off');
			layervisible("cal",'off');
			layervisible("cal_fore",'off');
			text=spacer + "<h1 style=\"text-align:center; font-size:28px\">Annual Fish Fry Fundraiser</h1><p style=\"text-align:center; font-size:18px\"><img src=\"./images/fry_fish.jpg\" height=160 width=160 border=0><br><br>Starting @ 5PM<br>Friday, April 3, 2009<br>15320 W. McNichols<br>(just east of Greenfield Rd)<br>Detroit, MI<br><br>Cost: $10<br></p>";
			 break;
			 			
		case 'mothersday':
			layervisible("aboutus_menu",'off');
			layervisible("caribbeancommunity_menu",'off');
			layervisible("jamaica_menu",'off');
			layervisible("cal",'off');
			layervisible("cal_fore",'off');
			text=spacer + "<center><img src=\"./images/mothersday2009.jpg\" width=519 height=406 alt=\"Mothers Day Cruise and Fashion show\"><p style=\"font-size:20px; font-weight:bold; text-align:center;\"><br><br>Sponsored by<hr><br><br><img src=\"./images/sponsor_irie.png\"><img src=\"./images/small_spacer.gif\" border=0 height=1px width=20px><a href=\"http://www.caribbeantravelinc.com\" target=\"blank\"><img src=\"./images/sponsor_caribtravel.png\"></a><img src=\"./images/small_spacer.gif\" border=0 height=1px width=20px><img src=\"./images/sponsor_jafra.png\"><br><img src=\"./images/small_spacer.gif\" border=0 height=20px width=1px><br><img src=\"./images/sponsor_mcd.png\"><img src=\"./images/small_spacer.gif\" border=0 height=1px width=20px><a href=\"http://www.tsginfo.com\" target=\"blank\"><img src=\"./images/sponsor_watkins.png\"></a><br><img src=\"./images/small_spacer.gif\" border=0 height=20px width=1px><br><img src=\"./images/sponsor_landm.png\"><br><br></p></center>";

			text_ad = "<p STYLE= \"font-size:20px; font-weight:bold; text-align:center; color:RED; margin-top:15px;\">Mother's Day Dinner Cruise</p><i>Sunday, May 10th</i><p STYLE= \"font-size:12px; text-align:center;\"><br><br>Please call<br><br>313.720.5637<br>or<br>313.454.9867<br><br>for additional information.</p><p STYLE= \"text-align:center;\"><br><a href=\"javascript:pagedisplay('dir_and_parking')\">Directions and Parking</a><br><br><a href=\"http://weather.yahoo.com/Detroit-Michigan-United-States/USMI0229/forecast.html\" target=\"blank\">Weather</a><br></p>";
			write_to_layer(browser,"adpane",text_ad);

			break;
			 			
		case 'dir_and_parking':
			layervisible("aboutus_menu",'off');
			layervisible("caribbeancommunity_menu",'off');
			layervisible("jamaica_menu",'off');
			layervisible("cal",'off');
			layervisible("cal_fore",'off');
			text=spacer + "<center><img src=\"./images/fullsizedetdockmap.jpg\" alt=\"Map to Detroit's Dock.\"><p style=\"font-size:12px; text-align:center;\"><u>PARKING</u><br><br>The dock is at the foot of Bates at Atwater, between the Renaissance Center / GM Headquarters and Hart Plaza. The closest parking lot is at the Miller Parking Garage at Bates and Atwater. Additional parking is available at Ford Auditorium Underground Parking and Cobo Hall Parking in addition to many other lots throughout the city.<br><br><u>DIRECTIONS</u><br><br><i>From I 75 north and south</i><br><br>Exit I-75 onto I-375 South in downtown Detroit<br>Exit Jefferson West<br>(375 will curve to the right and turn into W. Jefferson Ave.)<br>Make a Michigan left onto Bates<br>(Bates is just past the Ren Cen between Mariners Church and Ford Auditorium)<br>Bates ends one block up at Atwater Diamond Jack dock is just past the Police Station parking lot.<br><br><br><i>From the Lodge (10) south</i><br><br>The Lodge will go under Cobo Hall and then turn into Jefferson St.<br>Turn right onto Bates<br>(Bates is just past Hart Plaza between Ford Auditorium and Mariners Church,<br>if you pass the Ren-Cen, you have gone too far)<br>Bates ends one block up at Atwater<br> Diamond Jack dock is just past the Police Station parking lot. </p><p style=\"font-size:10px; text-align:center;\"> Map, Parking, and Directions are courtesy of Diamond Jack's River Tours.</p></center>";
			break;


        case 'picnic09':
            layervisible("aboutus_menu", 'off');
            layervisible("caribbeancommunity_menu", 'off');
            layervisible("jamaica_menu", 'off');
            layervisible("cal", 'off');
            layervisible("cal_fore", 'off');
            text = spacer + "<center><font size=5> 19th Annual Caribbean Family Reunion Picnic</font><br>&nbsp;<br>&nbsp;<br>The Caribbean Family Reunion Committee<br>Invites all Caribbean People,<br>Your Family, & Friends to a Full<br>Day of fun at the<br>&nbsp;<Br><font size=4>19th Caribbean Family Reunion Picnic<br>Saturday June 27th, 2009<br>From 9 a.m. to 6 p.m.<br>On Belle Isle<br>Shed 19 (near the Yacht Club)</font><br><i>Look for the Flags of the Different Caribbean Countries</i><br>&nbsp;<br><b><font size=3> Pot Luck Food &middot Caribbean Music &middot Games</font></b></center>";

        break;

    default:
			layervisible("aboutus_menu",'off');
			layervisible("caribbeancommunity_menu",'off');
			layervisible("jamaica_menu",'off');
			layervisible("cal",'off');
			layervisible("cal_fore",'off');
			text = spacer + "<SPAN CLASS='red'>&nbsp<br>Information coming soon!...</SPAN>";
			break;
			}
	write_to_layer(browser,"displaypane",text);
}

function addisplay(event) {
    browser_id();
    
    switch (event) {
        case 'gospelbreakfast':
            text = "<p STYLE= \"font-size:20px; font-weight:bold; text-align:center; color:RED; margin-top:15px;\">Caribbean American Gospel Breakfast Fundraiser</p><i>Saturday, June 13th</i><br><br>Principle Cafe<br>(on James Couzens btw<br>Puritan Ave and Keeler Ave)<br>Detroit, MI<p STYLE= \"font-size:12px; text-align:center;\"><br><br>Please call<br><br>313.720.5637<br>or<br>313.454.9867<br><br>for additional information.</p>";
        break;
        
    default:
			text = "<SPAN CLASS='red'>&nbsp<br>Information coming soon!...</SPAN>";
			break;
			}
	write_to_layer(browser,"adpane",text);
}


