/* Special onload effects for moo.fx. Edited by Kristy Sullivan December 12, 2006 */

/* To add a new button the name of the DIV layer must be added or changed in 4 places below */

var namerica, latin, aussie, europe, africa, most, mission, calendar, Asia;
		
		window.onload = function() {
			namerica = new fx.Combo('namerica', {height: true, opacity: true, duration: 200});
			latin = new fx.Combo('latin', {height: true, opacity: true, duration: 200});
			aussie = new fx.Combo('aussie', {height: true, opacity: true, duration: 200});
			europe = new fx.Combo('europe', {height: true, opacity: true, duration: 200});
			africa = new fx.Combo('africa', {height: true, opacity: true, duration: 200});
			most = new fx.Combo('most', {height: true, opacity: true, duration: 200});
			mission = new fx.Combo('mission', {height: true, opacity: true, duration: 200});
			Asia = new fx.Combo('Asia', {height: true, opacity: true, duration: 200});
			
			// Hide them to begin with
			namerica.hide();
			latin.hide();
			aussie.hide();
			europe.hide();
			africa.hide();
			most.hide();
			mission.hide();
			Asia.hide();
		}
