/*
 * @brief JS for representation sub menu
 * @author H <h@singinghorsestudio.com>
 */

$(function () {
	sub_menu_representation_1 = {
		id: 'representation_1',
		title: 'UK',
		colour: '#DDBBFF',
		hoverColour: '#E3C7FF',
		click: function() {
			MENU.show_page_content('representation/uk/');
		}
	};

	sub_menu_representation_2 = {
		id: 'representation_2',
		title: 'GERMANY',
		colour: '#BDA0DB',
		hoverColour: '#D8BDF2',
		click: function() {
			MENU.show_page_content('representation/germany/');
		}
	};

	sub_menu_representation_3 = {
		id: 'representation_3',
		title: 'FRANCE',
		colour: '#9E86B6',
		hoverColour: '#CCB3E6',
		click: function() {
			MENU.show_page_content('representation/france/');
		}
	};

	sub_menu_representation_4 = {
		id: 'representation_4',
		title: 'USA',
		colour: '#7E6B92',
		hoverColour: '#C1A9D9',
		click: function() {
			MENU.show_page_content('representation/north_america/');
		}
	};

	sub_menu_representation_5 = {
		id: 'representation_5',
		title: 'CANADA',
		colour: '#5F506D',
		hoverColour: '#B69FCC',
		click: function() {
			MENU.show_page_content('representation/canada/');
		}
	};

	sub_menu_representation_6 = {
		id: 'representation_6',
		title: 'LONDON HOME',
		colour: '#3F3549',
		hoverColour: '#AA95BF',
		click: function() {
			MENU.show_page_content('representation/london_home/');
		}
	};

	sub_menu_representation_7 = {
		id: 'not_fade_representation_7',
		title: '',
		colour: '#201B24',
		hoverColour: '#9F8BB3',
		click: function() {
		}
	};

	MENU.add_menu(sub_menu_representation_1, 'representation_0');
	MENU.add_menu(sub_menu_representation_2, 'representation_0');
	MENU.add_menu(sub_menu_representation_3, 'representation_0');
	MENU.add_menu(sub_menu_representation_4, 'representation_0');
	MENU.add_menu(sub_menu_representation_5, 'representation_0');
	MENU.add_menu(sub_menu_representation_6, 'representation_0');
	MENU.add_menu(sub_menu_representation_7, 'representation_0');
});
