// JavaScript Document
// JavaScript Document
function ftn_menuItem(strTitle, strPrice, strDescription, menuItemClass){
	var strCurrency = '&pound;';
	if (!menuItemClass){
		menuItemClass = 'menuItem';
	}else{
		strCurrency = '<br />&pound;';
	}
	
	if(!strPrice)
		strCurrency = '';
	var strMenuItem = '<div class="menuItemTall">' +
						'<div class="menuItemTitle" style="width:382px; text-transform:uppercase;">' + strTitle + '</div>' + 
						'<div class="menuItemDescription"><img src="/images/global/labesi.png" width="340" height=1"></div>' +
					'</div>' +
					'<div class="menuItemNoBg">' +
						'<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 strItem1 = '<img src="images/menu/menusStarters.png"  alt="Starters">' +
					'<div class="menuItemDescription"><img src="/images/global/labesi.png" width="340" height="6"></div>' +
					'<div class="menuItemDescription"><strong>All three courses only &pound;15.95 lunch/19.95 evening*</strong></div>' +
					'<div class="menuItemDescription"><img src="/images/global/labesi.png" width="340" height="6"></div>' +
					ftn_menuItem('Zuppa ', '', 'Please ask our friendly staff for the days soup') + 
					ftn_menuItem('Cocktail di Gamberetti', '', 'Prawns served on a bed of lettuce, Marie Rose sauce and a wege of lemon') +                                                             
					ftn_menuItem('Bruschetta', '', 'Toasted homemade bread with fresh diced tomatoes, garlic, olive oil and topped with parma ham and fresh rocket') +                                                             
					ftn_menuItem('Goats Cheese', '', 'Goats cheese wrapped in a filo pastry topped with honey, nuts and a fresh orange') +
					ftn_menuItem('Affettati e Formaggi', '', 'Mixed sliced Italian meat and cheese') ;
					
		var strItem2 =  '<img src="images/menu/menusMainCourses.png"  alt="Main courses">' +
					'<div class="menuItemDescription"><img src="/images/global/labesi.png" width="340" height="6"></div>' +
					'<div class="menuItemDescription"><strong>All three courses only &pound;15.95 lunch/19.95 evening*</strong></div>' +
					'<div class="menuItemDescription"><img src="/images/global/labesi.png" width="340" height="6"></div>' +
					ftn_menuItem('Bistecca', '', 'Sirloin steak grilled served with pepper sauce') +	
					ftn_menuItem('Filetto di Salomone alla Grilla', '', 'Grilled salomon with fresh market vegetables and a lemon wedge') +
					ftn_menuItem('Parma Rucola Pizza', '', 'Pizza with parma ham, fresh rocket, mozzarella cheese and tomato sauce') +
					ftn_menuItem('Suprema Di Pollo al Cream', '', 'Chicken breast with Mushrooms, White wine and Cream') +
					ftn_menuItem('Tortelloni', '', 'Tortelloni filled ithspinach and ricotta cheese cooked in a creamy sauce, spinach and parmesan') ;
	
	var strItem3 = '<img src="images/menu/menusDesserts.png"  alt="Desserts">' +
					'<div class="menuItemDescription"><img src="/images/global/labesi.png" width="340" height="6"></div>' +
					'<div class="menuItemDescription"><strong>All three courses only &pound;15.95 lunch/19.95 evening*</strong></div>' +
					'<div class="menuItemDescription"><img src="/images/global/labesi.png" width="340" height="6"></div>' +
					ftn_menuItem('Home made tiramisu', '', '') +
					ftn_menuItem('Chocolate fudge cake', '', '') +
					ftn_menuItem('Traditional cheese cake', '', '');
					
	
	
					

					
	
	switch(menuNumber) {
      case 1: d.innerHTML = strItem1; break
	
      case 2: d.innerHTML = strItem2; break
	  
      case 3: d.innerHTML = strItem3; break   
	  
	  case 4: d.innerHTML = strItem4; break 
	  

   }

	

}
