// Start Class Definition for Menu//////////////////////////////////////////////////////
function Level1_Item(id,image,swap_image,name,code,link,overlay,left_image,right_image,bottom_image){
    this.id = id;
    this.image  = image;
	this.swap_image = swap_image;
	this.name = name;
	this.code = code;
	this.overlay = overlay;
	this.left_image = left_image;
	this.right_image = right_image;
	this.bottom_image = bottom_image;
	this.item_array = new Array();
	this.submenu_array = new Array();
	this.link = "javascript:switchSection('" + link + "');";
}

function Level2_Item(id,image,swap_image,name,code,link){
    this.id = id;
    this.image  = image;
	this.swap_image = swap_image;
	this.name = name;
	this.code = code;
	this.link = "javascript:switchSection('" + link + "')";
}

function Submenu_Item(id,image,swap_image,link){
    this.id = id;
    this.image  = image;
	this.swap_image = swap_image;
	this.link = "javascript:switchSection('" + link + "')";
}

Level1_Item.prototype.addItem = function(level2_item){
	this.item_array.push(level2_item);
}
Level1_Item.prototype.addSubMenuItem = function(submenu_item){
	this.submenu_array.push(submenu_item);
}

function Country(code,name,img_name,img_flag){
	this.name = name;
	this.code = code;
	this.img_name = img_name;
	this.img_flag = img_flag;

}

//End Class Definition //////////////////////////////////////////////////////////////////////

