var menu_left = Array();

function leftmenu(desc, url, target){
	this.desc = desc;
	this.url = url;
	this.target = (target==undefined?"_self":target);
}


menu_left[0] = new leftmenu('10th Camp', '/10thcamp.htm', '_self');
menu_left[1] = new leftmenu('Welcome WG', '/10thwgmessage.htm', '_self');
menu_left[2] = new leftmenu('Fellowship', '/10thfellowship.htm', '_self');
menu_left[3] = new leftmenu('CFP', '/10thcfp.htm', '_self');
menu_left[4] = new leftmenu('Venue', 'http://www.ait.ac.th', '_blank');
menu_left[5] = new leftmenu('Schedule', '/10thschedule.htm', '_self');
menu_left[6] = new leftmenu('Team Building Groups', '/10thcampteambuilding.htm', '_self');
menu_left[7] = new leftmenu('Accommodation', 'http://intraweb.ait.ac.th/aitcc', '_blank');
menu_left[8] = new leftmenu('Visa Information', 'http://www.mfa.go.th/web/12.php', '_blank');
menu_left[9] = new leftmenu('Committee', '/10thcommittee.htm', '_self');
menu_left[10] = new leftmenu('Participants', '/10thcampparticipants.htm', '_self');
menu_left[11] = new leftmenu('Sponsor', '/10thcampsponsor.htm', '_self');
menu_left[12] = new leftmenu('<span style="line-height:1em;">Airport Transfer Schedule</span>', '/10thcamp-airporttransfer.htm', '_self');
// menu_left[13] = new leftmenu('Things-to-do', '/10thcamptodo.htm', '_self');
menu_left[13] = new leftmenu('Reports', '/10thcamp/reports/', '_self');

menu_left[14] = new leftmenu('Helpful Information', '/10thcamptravelinfo.htm', '_self');


function getmenu(){
	menulinks = "";
	for(var i=0;i<menu_left.length;i++){
			menulinks += "<a href='" + menu_left[i].url + "' target='" + menu_left[i].target + "' style='font-size:14px;'>" + menu_left[i].desc + "</a>\n";
	}
	return menulinks;
}

$(function(){

		var camp_support = new String();
		camp_support = '<br /><strong style="font-size:12px;">Supported By</strong><br />'
								 + '<div><br />'
								 + '<a href="http://www.interlab.ait.ac.th"><img src="/images/interlab.jpg" width="127" height="29" border="0"><br><b style="font-size:10px;text-align:center;">Internet Education and Research Laboratory, AIT</b></a><br />'
								 + '<a href="http://www.ait.ac.th"><img src="/images/ait_logo1.jpg" width="85" height="85" border="0"><br><b style="font-size:10px;">Asian Institute of<br>Technology (AIT)</b></a>'
								 + '</div>';

		$("#menu_left").attr('innerHTML', getmenu() + camp_support);
	}
	);
