
/* --- menu items --- */
var MENU_ITEMS = [
		
	['Our Family','http://www.softcomplex.com',null,
	['Karen','http://www.softcomplex.com'],
	['Peter','http://www.softcomplex.com'],
	['Johanna','http://www.softcomplex.com']],
	['Holidays','http://www.softcomplex.com',null,
	['Domestic','http://www.softcomplex.com',null,
	['2008','http://www.softcomplex.com',null,
	['Adelaide','http://www.softcomplex.com']],
	['2007','http://www.softcomplex.com',null,
	['Melbourne','http://www.softcomplex.com'],
	['Brisbane','http://www.softcomplex.com']],
	['2006','http://www.softcomplex.com'],
	['2005','http://www.softcomplex.com']],
	['Overseas','http://www.softcomplex.com']],
	['About Us','http://www.softcomplex.com']
];

var MENU_LVL1_ITEMS = [

	['Home','/default.htm',{'tb' : 'Home'},
	],

	['Our Family', null, {'sb' :'Our family'},
		['Karen','/karen.aspx', {'sb' : "Karen"}, 
		],
		['Peter', '/pete.aspx', {'sb' : "Pete"}, 
		],
		['Johanna','/joey.aspx', {'sb' : "Joey"}, 
	],
		
	],
	['Our Travels', null, null, //{'sw' : 74},
		['2008', null, null,
				['Holidays - we wish', null],
							],
		['2007', null, null,
				['Melbourne', '/underconstruction.htm'],
				['Brisbane', '/underconstruction.htm'],
				['Adelaide', '/underconstruction.htm'],
		],
		
		['2005', null, null,
				['Hawaii', '/underconstruction.htm'],
		],
		
		['2004', null, null,
				['Sydney', '/underconstruction.htm'],
		],
		
		['2003', null, null,
				['Melbourne', '/underconstruction.htm'],
				['Mt Hotham', '/underconstruction.htm'],
				['Ballarat', '/underconstruction.htm'],
				['Daydream island', '/underconstruction.htm'],
		],



	],
//	['Contact', null, {'sw' : 54},
//		['E-mail', 'http://www.softcomplex.com/support.html', {'oh' : imgOver, 'oo' : imgOut}],
//		['ICQ: 31599891', null, {'oh' : imgOver, 'oo' : imgOut}],
//		['Y! ID: softcomplex', null, {'oh' : imgOver, 'oo' : imgOut}],
//		['AIM ID: softcomplex', null, {'oh' : imgOver, 'oo' : imgOut}]
//	]

	
	];

var SRCs = {
	'2_0' : 'email',
	'2_1' : 'icq',
	'2_2' : 'yahoo',
	'2_3' : 'aol'
}
function imgOver(s_id) {
	document.images['myImg'].src = 'img/' + SRCs[s_id] + '.gif' 
}
function imgOut(s_id) {
	document.images['myImg'].src = 'img/help-2.gif'
}
	

