
function menuSet(itemNumber)
	{
	var text = [
			'The Home of Quoin Kits',
			'2-Stroke Oil / Gasoline Mixture Testing Kits',
			'Instructions For The Kit',
			'Two Stroke Engine Fault Diagnostic Tips',
			'Things That Made Us Chuckle',
			'Get In Touch',
			'Kits Supplied To Other Countries',
		   ];
	
	var tdElement = document.getElementById("menuHover");

	tdElement.innerHTML = text[itemNumber];
	}


