//VC: v1: 03Sept09
//VC: v2: 29Dec09
//VC: v3: 08Jan10
//VC: v4: 21Mar10
//VC: v5: 14Jun10

	function d1()
	{
		var r_text = new Array ();
		var a_text = new Array ();
		
		var r_pic = new Array() ;
		
//		a_text[0] = '<em>We are taking <a href="christmas.htm">Christmas</a> and <a href="events.htm">New Year Party</a> Bookings now! Please follow the page or give us a call at 01332 343 288 for more details</em>'

		a_text[0] = '<em>We are taking Christmas Bookings now! Please follow the page or give us a call at 01332 343 288 for more details</em>'
		
		r_text[0] = "Sushi is not always raw! Some of them are cooked while some are made with vegetables.";
		r_text[1] = "Bento Box - Each box contains a completed nutritious meal, beautifully packed in the compartments of the Bento Box.";
		r_text[2] = "Ramen and Udon - Big bowls of Japanese noodles in light flavoured soup.";
		r_text[3] = "Sashimi is a delicately sliced raw fish of the utmost freshness and quality is eaten after being dipped in soy sauce flavoured with a small amount of grated wasabi, which is similar to horseradish.";
		r_text[4] = "Tempura is a selection of meat, seafood or vegetables deep fried in a light tempura batter, served with tempura dipping sauce.";
		r_text[5] = "Sake can be drink warm or cold. It tastes very different while it is warm than cold!";
		r_text[6] = "Donburi - Japanese dish of fish, meat or vegetable served over rice.";
		r_text[7] = "Yaki Soba - Japanese egg noodles fried on the teppanyaki grill with mixed vegetables and served with your choice"

		
		
		r_pic[0] = "Sushi is not always raw! Select here for more details";
		r_pic[1] = "bento box";
		r_pic[2] = "teppanyaki";
		r_pic[3] = "set meal";
		r_pic[4] = "tempura";
		r_pic[5] = "sake";
		r_pic[6] = "California dreaming, On such a winter's day";
		r_pic[7] = "Yaki Soba - Japanese egg noodles fried on the teppanyaki grill with mixed vegetables and served with your choice"		
		
		var i = Math.floor(8*Math.random())
		
		
		document.write(a_text[0] + '<p>');
		document.write(r_text[i]);
		
	}
	
	
		function d3()
	{
		var a_text = new Array ();
				
		var e = new Array ();
				
		var j = new Array() ;
		
		
		a_text[0] = '<em>How can I say:-</em>'
		
		e[0] = "Thank you";
		e[1] = "Good-bye";
		e[2] = "Hello";
		e[3] = "Good evening";
		e[4] = "Yes";
		e[5] = "How are you?";
		e[6] = "Cheers (toast)";
		
		
		j[0] = "Domo arigato. (doh-moh ah-ree-GAH-toh) ";
		j[1] = "Sayonara. (sa-YOH-nah-rah) ";
		j[2] = "Konnichiwa. (kon-nee-chee-WAH) ";
		j[3] = "Konbanwa. (kohm-bahn-wah) ";
		j[4] = "Hai. (HIGH)";
		j[5] = "O-genki desu ka? (oh-GEN-kee dess-KAH?) ";
		j[6] = "Kan-pai (Kam-pei)";
		
		
		var i = Math.floor(7*Math.random())
		
		
		document.write('<p>' + a_text[0] + '</p>');

		document.write('<p>' + 'In English:-' + '<br>');	
			document.write(e[i] + '</p>');
		document.write('<p>' + 'In Japanese:-' + '<br>');		
			document.write(j[i] + '</p>');
		
	}