function home(){

	var r = Math.floor(Math.random() * 4)
	var testimonial = document.getElementById("testimonial");
	var html = '<p class="testimonial"><span class="hidden">&ldquo;</span>';
	if( r == 0 ){
		html += "This is fabulous, I come every year.";
	}
	else if( r == 1 ){
		html += "With all of us getting a little older, we have to find ways to take care of ourselves.";
	}
	else if( r == 2 ){
		html += "It is great to know the companies who want to do business with those of us who are over the &lsquo;50 mark&rsquo;.";
	}
	else if( r == 3 ){
		html += "Much of this information I did not know where to find. It was great having it all in one place.";
	}
	html += '&rdquo;</p><cite class="customer"> &ndash;2008 Life After 50 Attendee</cite>';
	testimonial.innerHTML = html;
	
	if(GBrowserIsCompatible()){
		var map = new GMap2(document.getElementById("map"));
		map.setCenter(new GLatLng(30.444982, -91.184506), 15);
		var point = new GLatLng(30.444982, -91.190019);
		var icon = new GIcon();
		icon.image = "http://maps.google.com/mapfiles/ms/micons/blue-pushpin.png";
		icon.shadow = "http://maps.google.com/mapfiles/ms/micons/pushpin_shadow.png";
		icon.shadowSize = new GSize(59, 32);
		icon.iconSize = new GSize(32, 32);
		icon.iconAnchor = new GPoint(0, 0);
		icon.infoWindowAnchor = new GPoint(0, 0);
		var marker = new GMarker(point, { icon: icon })
		map.addOverlay(marker);
		GEvent.addListener(marker, "click", function(){
			marker.openInfoWindowHtml("<p><b>The Baton Rouge River Center</b></p>")
		});
	}

}