// JavaScript Document
// JavaScript Document
function ftn_menuItem(strTitle, strPrice, strDescription){
	var strMenuItem = '<div class="menuItem">' +
						'<div class="menuItemTitle" style="text-transform:uppercase">' + strTitle + '</div>' + 
						'<div class="menuItemPrice">&pound;' + strPrice + '</div>' + 
						'<div class="menuItemDescription"><img src="/images/global/labesi.png" width="340" height="4"></div>' +
						'<div class="menuItemDescription">' + strDescription + '</div>' + 
						'<div class="menuItemDescription"><img src="/images/global/labesi.png" width="340" height="8"></div>' +
					'</div>';
	return strMenuItem;				
				
}
function ftn_InsertMenu(menuNumber){
	
	var d = document.getElementById('thefood');
  
	var strStarters = '<img src="images/menu/menusStarters.png"  alt="Starters">' +
					'<div class="menuItemDescription"><img src="/images/global/labesi.png" width="340" height="6"></div>' +
					ftn_menuItem('SOUP OF THE DAY', '3.50', 'Please ask our friendly staff for todayÃ¢â‚¬â„¢s soup') + 
					ftn_menuItem('Olives', '3.50', 'Freshly made Pizza Bread with Tomato sauce and garlic') +
					ftn_menuItem('GARLIC PIZZA BREAD', '3.50', 'Freshly made Pizza Bread with Tomato sauce and garlic') +
					ftn_menuItem('...OR GARLIC PIZZA BREAD', '4.50', 'With Mozzarella cheese and garlic') +
					ftn_menuItem('BRUSCHETTA', '3.95', 'Toasted Italian bread with fresh tomato, garlic, olive oil and basil') +
					ftn_menuItem('...OR BRUSCHETTA', '4.95', 'Topped with Parma ham, fresh rocket') + 
					ftn_menuItem('CALAMARI FRITTI', '4.50', 'Deep fried calamari with homemade tartar sauce') + 
					ftn_menuItem('FUNGHETTI  ALL CREMA', '4.95', 'Garlic mushrooms in cream and white wine sauce') + 
					ftn_menuItem('ANTIPASTO', '5.50', 'With olives, a selection of meats, marinated mixed pickled vegetables') +   
					ftn_menuItem('MOZZARELLA FRITTA', '4.95', 'Deep fried mozzarella wrapped in Parma ham with rocket and fresh tomatoes') + 
					ftn_menuItem('La Besi Caesar Salad with Salmon or Chicken', '4.95', 'Caesar Salad with anchovies, egg, parmesan, Caesar dressing, toast bread and cos lettuce') +
					ftn_menuItem('INSALATA TRICOLORE', '4.50', 'Fresh tomato, avocado, baby mozzarella, fresh basil and olive oil') +  
					ftn_menuItem('INSALATE DI MARE', '5.35', 'A selection of seafood with lemon juice, garlic, and parsley served with garnish') +
					ftn_menuItem('PRAWNS WITH AVOCADO', '4.95', 'Served on a bed of lettuce and Marie-rose sauce') +
					ftn_menuItem('GOATS CHEESE', '4.95', 'Goats cheese wrapped in a filo pastry with honey, nuts, and fresh orange') +
					
					ftn_menuItem('SPECIAL ANTIPASTO', '12.95', 'For 4 people');

var strSecPiatti = '<img src="images/menu/menusSecondiPiatti.png"  alt="Secondi Piatti">' +
					'<div class="menuItemDescription"><img src="/images/global/labesi.png" width="340" height="6"></div>' +
					ftn_menuItem('POLLO CACCIATORE', '9.95', 'Chicken cooked in a spicy tomato sauce with mixed peppers, onions, mushrooms and ham') +
					ftn_menuItem('POLLO AL FUNGHI', '9.95', 'Chicken breast with white wine, mushrooms, shallots a touch of tomato and cream') +
					ftn_menuItem('POLLO ALLA GRIGLIA', '8.95', 'Grilled chicken breast served with roasted new potatoes and garnish') +
					ftn_menuItem('BATUTTA DE POLLO ALLA MILANESE', '10.95', 'Breadcrumbed chicken breast served on a bed of spaghetti with mixed peppers, tomato sauce, parmesan cheese and chilli') +
					ftn_menuItem('POLLO PARMIGGIANO', '11.95', 'Strips of chicken breast in parmesan cheese and breadcrumbs, served on a bed of basil & tomato tagliatelle pasta') +
					ftn_menuItem('BISTECCIA', '11.95', 'Sirloin steak grilled with fresh tomato and grilled mushrooms') +
					ftn_menuItem('BISTECCIA', '12.95', 'Sirloin steak grilled served with Pepper sauce') + 
					ftn_menuItem('SALMON AL LIMONE', '11.95', 'Pan fried salmon steak with fresh lemon sauce,butter, white wine on a bed of rice') + 
					ftn_menuItem('FILETTO DI SALMONE FERRI', '10.95', 'Grilled salmon served with fresh market vegetables and a lemon wedge');
					
	var strPizzas = '<img src="images/menu/menusPizzas.png"  alt="Pizzas">' +
					'<div class="menuItemDescription"><img src="/images/global/labesi.png" width="340" height="6"></div>' +
					'<div class="menuItemDescription"><strong>&pound;0.80 for each additinal topping.</strong></div>' +
					'<div class="menuItemDescription"><img src="/images/global/labesi.png" width="340" height="6"></div>' +
					ftn_menuItem('MARGHERITA', '6.80', 'Mozzarella, tomato sauce and fresh basil') +
					ftn_menuItem('NAPOLI', '7.35', 'Mozzarella, tomato sauce, anchovies, capers and olives') +
					ftn_menuItem('PEPPERONI', '7.35', 'Tomato sauce, mozzarella cheese and Italian hot pepperoni') + 
					ftn_menuItem('TROPICANA', '7.35', 'Tomato sauce, mozzarella cheese, ham and pineapple') +
					ftn_menuItem('MARINARA', '7.95', ' A selection of seafood, mozzarella cheese and tomato sauce') +
					ftn_menuItem('LA BESI PIZZA', '8.50', 'Our Chef\'s own irresistible recipe, a little bit of everything and a lot of love') +
					ftn_menuItem('CALZONE', '7.95', 'Folded pizza with mozzarella cheese, tomato sauce, ham and salami pepperoni and oregano') +
					ftn_menuItem('POLLO CALZONE', '7.50', 'Folded pizza stuffed with chicken, garlic, spinach, mozzarella cheese and tomato sauce') +
					ftn_menuItem('QUATTRO FORMAGGI', '7.80', 'Tomato sauce with four Italian cheeses') +
					ftn_menuItem('VEGETARIAN', '7.35', 'Tomato sauce, Mozzarella cheese, mixed peppers, onions and mushrooms') +
					ftn_menuItem('QUATTRO STAGIONI', '7.95', 'Italian thin sliced ham, mixed peppers, mushrooms, pepperoni, mozzarella cheese and tomato sauce') +
					ftn_menuItem('FRANCESCANA', '7.50', 'Italian thin sliced ham, mushrooms, mozzarella cheese and tomato sauce') +
					ftn_menuItem('PROSCUITTO', '7.45', 'Italian thin sliced ham, mozzarella cheese, tomato sauce and fresh basil') +
					ftn_menuItem('PIZZA DEL MILLENNIO', '7.95', 'Parma ham, baby mozzarella, tomato sauce topped with rocket leaves and parmesan cheese') ;
	
	var strPasta = '<img src="images/menu/menusPasta.png"  alt="Pasta">' +
					
					'<div class="menuItemDescription"><img src="/images/global/labesi.png" width="340" height="6"></div>' +
					ftn_menuItem('LASAGNE', '7.50', 'Home made lasagne with 100% prime mince beef, Bolognese sauce, bÃƒÂ©chamel, oven baked with mozzarella cheese') +
					ftn_menuItem('CANNELLONI', '7.35', 'Homemade pasta rolls filled with spinach and ricotta cheese and oven baked with mozzarella cheese') +
					ftn_menuItem('TAGLIATELLE SALMONE', '7.95', 'Pasta strips tossed with fresh salmon, broccoli, shallots, parsley and a creamy white wine and tomato sauce') +
					ftn_menuItem('TAGLIATELLE STEAK', '8.50', 'Tagliatelle with strips of sirloin steak, fresh tomato, chilli, touch of tomato sauce and finished with fresh basil') +
					ftn_menuItem('SPAGHETTI ALLA CARBORANA', '7.95', 'Spaghetti with bacon, garlic, white wine, egg yolk in a creamy sauce with parmesan cheese') +
					ftn_menuItem('SPAGHETTI ALLA MARE', '7.95', 'Spaghetti tossed with a selection of fine seafood, garlic, white wine and tomato sauce') +
					ftn_menuItem('ITALIAN MEATBALLS', '7.95', 'Home Made with 100% prime mince beef in a traditional tomato sauce with spaghetti') +
					ftn_menuItem('SPAGHETTI BOLOGNESE', '6.95', 'Made with 100% prime beef mince, and tomato sauce') +
					ftn_menuItem('PENNE ARRABBIATA', '6.95', 'Penne with hot peperoni, olives, chillies in tomato sauce') +
					ftn_menuItem('PENNE AI FORNO', '6.95', 'Oven baked pasta with fresh vegetables, tomato sauce and mozzarella cheese') + 
					ftn_menuItem('CHEFS PASTA', '7.95', 'Penne with chicken, mushrooms, onions, garlic, parmesan cheese, tomato sauce and a touch of cream') +
					ftn_menuItem('RISOTTO DELLA NONNA', '7.95', 'Italian rice with chicken, mushrooms, onions, tomato sauce and parmesan cheese') +
					ftn_menuItem('SEAFOOD RISOTTO', '7.95', 'Italian rice tossed with a selection of fine seafood, garlic, white wine and tomato sauce') +
					ftn_menuItem('TORTELLONI', '8.50', 'Tortelloni filled with spinach and ricotta cheese cooked in a creamy sauce, spinach and parmesan cheese');
	
	var strChildrens = '<img src="images/menu/menusChildrens.png"  alt="Childrens Food">' +
					'<div class="menuItemDescription"><img src="/images/global/labesi.png" width="340" height="6"></div>' +
					ftn_menuItem('CHILDRENS PIZZA', '5.35', 'Served with a soft drink of your choice and followed by a portion of ice cream') +
					ftn_menuItem('CHILDRENS PASTA', '5.35', 'Served with a soft drink of your choice and followed by a portion of ice cream');
					
	
	var strVegetables = '<img src="images/menu/menusVegetables.png"  alt="Vegetables">' +
					'<div class="menuItemDescription"><img src="/images/global/labesi.png" width="340" height="6"></div>' +
					ftn_menuItem('VEGETABLE OF THE DAY', '2.85', '') +
					ftn_menuItem('FRENCH FRIES', '1.70', '') +
					ftn_menuItem('SAUTEED SPINACH WITH GARLIC AND OLIVE OIL', '2.35', '') +
					ftn_menuItem('SAUTEED POTATOES WITH ONIONS AND FRESH HERBS', '2.50', '') +
					ftn_menuItem('ZUCCHINI', '2.95', 'Breadcrumbed fried courgettes');
					
					
	
	var strSalad = '<img src="images/menu/menusSalad.png"  alt="Salad">' +
					'<div class="menuItemDescription"><img src="/images/global/labesi.png" width="340" height="6"></div>' +
					ftn_menuItem('GREEK SALAD', '3.50', '') +
					ftn_menuItem('MIXED SALAD', '2.95', '') +
					ftn_menuItem('GREEN SALAD', '2.50', '') +
					ftn_menuItem('RUCOLA E PARMIGIANO', '3.50', 'Rocket and parmesan salad with balsamic dressing') +
					ftn_menuItem('INSALATA VERDE CON AVOCADO', '3.50', 'Green salad with Avocado	') +
					ftn_menuItem('INSALATA DI POMIDORI', '2.95', 'Sliced tomatoes, red onion, black olives and olive oil') ;

	var strDessert = '<img src="images/menu/menusDesserts.png"  alt="Dessert">' +
					'<div class="menuItemDescription"><img src="/images/global/labesi.png" width="340" height="6"></div>' +
					ftn_menuItem('CHOCOLATE FUDGE CAKE', '3.95', 'A rich moist chocolate sponge layered with fudge and coated in a wonderfully smooth chocolate fudge icing') +
					ftn_menuItem('TORTA CAPPUCCINO', '3.95', 'Layers of chocolate sponge soaked with espresso coffee &amp; smooth coffee cream, decorated with stripes of cocoa powder') +
					ftn_menuItem('HOMEMADE TIRAMISÃƒâ„¢', '3.95', 'Layers of sponge soaked liqueur &amp; coffee filled with zabaglione &amp; coffee cream, dusted with a rich cocoa powder') +
					ftn_menuItem('COPPA PROFITERROLES', '3.95', 'Rich chocolate cream covering choux pastries filled with chantilly cream') +
					ftn_menuItem('ARANCIA RIPENA', '3.95', 'A real orange with its flesh removed &amp; filled with a tangy sorbet') +
					ftn_menuItem('LIMONE RIPENO', '3.95', 'A real lemon with its flesh removed &amp; filled with a tangy sorbet') +
					ftn_menuItem('COPPA CIOCCOLATO', '4.50', 'Vanilla ice cream rippled with chocolate cream swirls') +
					ftn_menuItem('CASSATA SICILIANA', '3.95', 'A slice of vanilla and chocolate ice cream with a cream and candied fruit centre') +
					ftn_menuItem('BANANA SPLIT', '3.95', 'Fresh banana, three scoops of ice cream and cream. Comes with a choice of strawberry, chocolate or rasberry sauce') + 
					ftn_menuItem('CREATE YOUR OWN ICE CREAM', '3.95', 'Three scoops of either strawberry chocolate or vanilla');
					
	
	switch(menuNumber) {
	
	case 1: d.innerHTML = strStarters; break
	
	case 2: d.innerHTML = strSecPiatti; break

	case 3: d.innerHTML = strPizzas; break

	case 4: d.innerHTML = strPasta; break

	case 5: d.innerHTML = strChildrens; break
	  
	case 6: d.innerHTML = strVegetables; break
	  
	case 7: d.innerHTML = strSalad; break
	  
	case 8: d.innerHTML = strDessert; break
   }

	

}



