function areaTextHi(area,mouse) {	if (document.getElementById) 	{		var ttl;		var dsc;		var map;		var pic;		var col;		var bgcol;		var is0 = true;		var listdoc;		var mapdoc;		listdoc = document;		mapdoc=document;			if (mouse == "over") {					map='/media/map/big/' + area + '.gif'			pic='/webpics/editorial/regions/' + area + '.jpg'			col='#FFFFFF'			bgcol='#62a4d2'			switch(area)					{ 						case 'west':							{ttl = 'The West Country';dsc='Discard your worries and let the stress flake off you with every mile you travel west. This is a place to take your time, eat, drink, swim and recharge the batteries.';break;}						case 'co':							{ttl = 'Cornwall';dsc='Cornwall is not a county but almost an island, at least that is what its inhabitants like to think, but they are all the more welcoming for it.';break;}						case 'cofw':							{ttl = 'Cornwall | Far West and Scilly';dsc='The ancient landscape and special quality of light on this peninsula have inspired artists and storytellers for hundreds of years.';break;}						case 'cosw':							{ttl = 'Cornwall | South West';dsc='Linked by lighthouses and lackadaisical lanes, from the radiant north coast to the other land\'s end at Lizard point.';break;}						case 'conc':							{ttl = 'Cornwall | North Coast';dsc='Cornwall\'s backbone, a 50 mile stretch of coast with some of the world\'s finest beaches whether you are a surfer or a beachcomber.';break;}						case 'cobm':							{ttl = 'Cornwall | The Moor to River Tamar';dsc='Here is a land shamelessly driven through and rarely stopped at; a spiritual wilderness teeming with beauty and legends.';break;}						case 'cosc':							{ttl = 'Cornwall | South Coast';dsc='Softer, calmer, more Mediterranean than its north coast sister, the south cajoles Cornish rivers into a warmer sea.';break;}						case 'de':							{ttl = 'Devon';dsc='Rural idyll in all its many varieties from the sheep crossing the road on Dartmoor to the cricketers on the village green. The coast is good too.';break;}						case 'deno':							{ttl = 'North Devon';dsc='The Taw and Torridge rivers pincer in on Bideford. Surfers escape to Croyde whilst ramblers share The Valley of the Rocks with the resident goats.';break;}						case 'deda':							{ttl = 'Devon | Dartmoor';dsc='A square mile for every day of the year. Granite, bogs, heather, huge skies and ponies; 3,000 of the little cherubs, never wild, just unbroken.';break;}						case 'deso':							{ttl = 'South Devon';dsc='The soft, seductive lowlands chaperone 60 miles of Heritage Coast. So snooze off lunch under the oak on the village green or lolling on your beach of choice.';break;}						case 'so':							{ttl = 'Somerset';dsc='Somerset cossets you into the West Country from the lowlands of Sedgemoor, through the Quantocks and on to its tussle with Devon over Exmoor in the north.';break;}						case 'do':							{ttl = 'Dorset';dsc='A land steeped in history from the fossils of the Jurassic coast to the pier at Lyme Regis, famed by the French Lieutenant and that famous kiss.';break;}					}		} else {			map=mapdoc.getElementById('hdnmapbase').value;					pic='/webpics/editorial/regions/west.jpg';			ttl = 'The West Country';dsc='Discard your worries and let the stress flake off you with every mile you travel west. This is a place to take your time, eat, drink, swim and recharge the batteries.';			col=''			bgcol=''		}		//fixes a bug in IE6	window.setTimeout('window.status="' + ttl + '"',1);		if (mapdoc.getElementById('rtitle'))		{			mapdoc.getElementById('rtitle').innerHTML=ttl;			mapdoc.getElementById('rdesc').childNodes[0].nodeValue=dsc;			mapdoc.getElementById('rimg').src=pic;		}			if(listdoc.getElementById('rc_' + area)){		is0=(listdoc.getElementById('rc_' + area).innerHTML=='0');						} else{		is0=true;	}		if (is0 == true){
		map=mapdoc.getElementById('hdnmapbase').value;	}else{		var spansInsideLink = listdoc.getElementById(area + 'a').getElementsByTagName('span'); 
		for (var i = 0; i < spansInsideLink.length; i++) { 
			var node = spansInsideLink[i]; 
			node.style.color=col;
			node.style.backgroundColor=bgcol;
		}  	}		mapdoc.getElementById('wcmap').src=map;	}}