// 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="' + menuItemClass + '">' +
						'<div class="menuItemTitle">' + strTitle + '</div>' + 
						'<div class="menuItemPrice">'  + strCurrency + 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 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');


	switch(menuNumber) {

	case 5: d.innerHTML = strChildrens; break

	}

}


