$(document).ready(function() {
	var info = new Array();
	info[0] = "<h4>About Us</h4><i>Learn about our club and the community services we offer.</i>";
	info[1] = "<h4>Membership</h4><i>Find out the LMARS meeting date, time, and location.</i> <p><i>Learn how to become a member of LMARS.</i></p>";
	info[2] = "<h4>Officers</h4><i>Meet our Board Members and Key Members, and view their contact information.</i>";
	info[3] = "<h4>Licensing</h4><i>Find out about testing sessions (dates, times, locations), learn how to become a Ham, and learn about the different licenses available.</i>";
	info[4] = "<h4>Elmers / VE</h4><i>View the LMARS Elmers and find out how they can ease your way into becoming an Amateur Radio operator.</i> <p><i>Learn about the LMARS Volunteer Examiners.</i></p>";
	info[5] = "<h4>Repeaters</h4><i>View the LMARS repeater frequencies and their locations.</i>";
	info[6] = "<h4>Traffic Net</h4><i>Learn about the LMARS Traffic Net and how to become an active participant.</i> <p><i>Download documents to get you started.</i></p>";
	info[7] = "<h4>CFLN</h4><i>Learn about the Central Florida CW Net and how to become a member.</i> <p><i>Download the Net log, Charter, and member list.</i></p>";
	info[8] = "<h4>Links</h4><i>View links to other Ham Radio club websites, commercial vendors of Amateur Radio equipment, and other Ham Radio links.</i>";
	info[9] = "<h4>LMARS Forum</h4><i>Join the LMARS Yahoo User Group.</i> <p><i>Post messages, ask for help, communicate with other members.</i></p>";

	$("div[class=bulletin]").html("&nbsp");
	$("div[class=bulletin]").fadeOut("fast");
	$("#mainmenu").find("a").each(function(i) {
		$(this).hover(function() {	
			$("div[class=bulletin]").stop(false, true);
			$("div[class=bulletin]").html(info[i]);

			$("div[class=bulletin]").fadeIn("fast", function(){ready=true;});					
		}, function() {
			$("div[class=bulletin]").stop(false, true);
			$("div[class=bulletin]").fadeOut("fast", function(){ready=true;});
		});
	});
	
	$("#joinlmars").hover(function() {
			$(this).attr("src", "images/forum-h.gif");
		}, function() {
			$(this).attr("src", "images/forum.gif");
		});

 });
