/**
 * This script loads the Activity box and slider info box
 * 
 * requires:
 * 		jquery.js
 * 		jquery.effects.core.js
 * 		jquery.effects.slide.js
 */

var ActBox = { 
	// The div that holds the links
	container: '#ActBox',
	
	getLink: function() {
		$("#ActBox a").hover(function(){
			var activities = {
"BOOK CLUB" :'<div class="heading">Book Club</div><p>Book Club meets on the 4<sup>th</sup>Thursday of each month to discuss recent book selections.',
"BRIDGE"    :'<div class="heading">Beginning Bridge</div><p>Beginners Bridge meets the 1<sup>st</sup> and 3<sup>rd</sup> Monday of the month at a member\'s home or area restaurant.<br /><br /></p><div class="heading">Intermediate Bridge</div><p>Intermediate Bridge meets the 4<sup>th</sup> Friday of the month at a member\'s home<br /><br /></p><div class="heading">Couples Bridge</div><p>Couples Bridge meets the 4<sup>th</sup> Saturday evening of the month at 7:00 PM at a member\'s home.<br /><br /></p>',
"CANASTA"   :'<div class="heading">Canasta</div><p>A fun game that is easy to learn!<br />Daytime and evening groups include both beginners and seasoned players.</p>',
"DINNER WITH FRIENDS": '<div class="heading">Dinner With Friends</div>.<p>An evening of dining with other newcomers is held monthly on a Saturday night at an area restaurant.</p>',
"MAH JONGG" : '<div class="heading">Mah Jongg</div><p>An anceint Chinese game that is fun and challenging.&nbsp;  There are daytime groups for both beginners and seasoned players.</p>',
"GEORGIA ADVENTURES" : '<div class="heading">Georgia Adventures</div><p>Georgia Adventures includes visits to places around town and in Atlanta that are on every newcomer\'s list of "things to do".&nbsp Sites include the Botanical Gardens, the Governor\'s Mansion, and the Aquarium.</p>', 
"LADIES' LUNCH BUNCH" : '<div class="heading">Ladies\' Lunch Bunch</div><p>Meets on the 3<sup>rd</sup> Wednesday of the month after the general meeting, at a local restaurant.</p>',
"COOKS WITH A SOUTHERN CHARM" : '<div class="heading">Cooks with a Southern Charm</div><p>Meets on the 2<sup>nd</sup> Friday of the month.&nbsp; This cooking group tries new recipes from the monthyl Food Network Magazine.</p>',
"WINE & DINE" : '<div class="heading">Wine &amp; Dine</div><p>A casual monthly get together where members sample wines, enjoy dinner &amp; conversation in a small gathering with other newcomers.</p>',
"DINE AND DRAMA" : '<div class="heading">Dine and Drama</div><p>Meets the last Monday of the month.&nbsp;  Light lunch and a variety of movies viewed with friends in the North Point Mall vicinity.</p>',
"ETCs & UFOs" : '<div class="heading">ETCs &amp; UFOs</div><p>Meets on the 2<sup>nd</sup> Thursday of the month.  For those interested in any kind of crafting and all sorts of gabbing.</p>'
} ;
			var link =  $(this).text();
			var link = activities[link];
			
			$("#Info").html(link);

		},

		function(){
			var link = '';
		});
	},

	display: function(){
		var link = ActBox.getLink();
//		$("#ActBox").hover(function(){
		$("#ActBox a").hover(function(){
			$("#Info").stop(true, true).html(ActBox.getLink).show("slide", {direction:"right"}, 750);
		},
			function(){
				var link = '';
				$("#Info").hide("slide", {direction:"right"}, 250);
				$(this).stop(true, true);  //.stop(true, true) .dequeue()
		}); 
	}
}

