
var menu =
{
	home			:	['Home','index.html'],
			
	ac_for_games	:
						[
							 ['AC FOR GAMES',				'ac_overview.html'], 	// for generateFooter() only!
							 ['AC Overview',				'ac_overview.html'],
							 ['AC For End-Users',			'ac_for_users.html'],
							 ['AC For Game Developers',		'ac_for_games_developers.html'],
							 ['Showcase: AC in the development of SONY\'s This Is Football','showcase.html'],
							 ['Principles behind AC technology','principles.html'],
							 ['AC  Demos',					'ac_demos.php'],
							 ['Quotes and Testimonials',	'testimonials.html'],
							 ['AC Licensing',				'ac_licensing.html']
						],
			
	about_trusoft	:	['About Trusoft','about_trusoft.html'],
			
	news			:	['News','news.html'],
			
	contact_us		:	['Contact Us','contact_us.html']
}
//alert(menu.ac_for_games[0][1]);
/*
for (var menuTopic in menu)
{
	var menuItem = (typeof menu[menuTopic][0] == 'object') ? menu[menuTopic][0] : menu[menuTopic] ;
}
*/

				
var img_on = {};
var img_off = {};
var img_selected = {};

for (var prop in menu){
	img_off[prop] = new Image();
	img_off[prop].src = "img/menu_html/"+prop+".gif";

	img_on[prop] = new Image();
	img_on[prop].src = "img/menu_html/"+prop+"_active.gif";

	img_selected[prop] = new Image();
	img_selected[prop].src = "img/menu_html/"+prop+"_selected.gif";
}
/*
for (var prop in menu)
{
	alert(img_on[prop].src);
}
*/