_leftmap_order = new Array('scotland', 'ireland', 'ni', 'southwest', 'south', 'east', 'home', 'northeast', 'northwest', 'wales', 'midlands', 'london');

_leftmap_data = new Array();

_leftmap_data['map'] = new Array();
_leftmap_data['map']['left'] = 43;

_leftmap_data['heading'] = new Array();
_leftmap_data['heading']['left'] = 60;

_leftmap_data['scotland'] = new Array();
_leftmap_data['scotland']['name'] = 'Scotland';
_leftmap_data['scotland']['count'] = 26;
_leftmap_data['scotland']['left'] = 64;

_leftmap_data['ireland'] = new Array();
_leftmap_data['ireland']['name'] = 'Ireland';
_leftmap_data['ireland']['count'] = 3;
_leftmap_data['ireland']['left'] = 43;

_leftmap_data['ni'] = new Array();
_leftmap_data['ni']['name'] = 'Northern Ireland';
_leftmap_data['ni']['count'] = 5;
_leftmap_data['ni']['left'] = 43;

_leftmap_data['southwest'] = new Array();
_leftmap_data['southwest']['name'] = 'South West';
_leftmap_data['southwest']['count'] = 6;
_leftmap_data['southwest']['left'] = 57;

_leftmap_data['south'] = new Array();
_leftmap_data['south']['name'] = 'South';
_leftmap_data['south']['count'] = 3;
_leftmap_data['south']['left'] = 134;

_leftmap_data['east'] = new Array();
_leftmap_data['east']['name'] = 'East Anglia';
_leftmap_data['east']['count'] = 5;
_leftmap_data['east']['left'] = 164;

_leftmap_data['home'] = new Array();
_leftmap_data['home']['name'] = 'Home Counties';
_leftmap_data['home']['count'] = 3;
_leftmap_data['home']['left'] = 141;

_leftmap_data['northeast'] = new Array();
_leftmap_data['northeast']['name'] = 'North East';
_leftmap_data['northeast']['count'] = 7;
_leftmap_data['northeast']['left'] = 135;

_leftmap_data['northwest'] = new Array();
_leftmap_data['northwest']['name'] = 'North West';
_leftmap_data['northwest']['count'] = 9;
_leftmap_data['northwest']['left'] = 117;

_leftmap_data['wales'] = new Array();
_leftmap_data['wales']['name'] = 'Wales';
_leftmap_data['wales']['count'] = 9;
_leftmap_data['wales']['left'] = 75;

_leftmap_data['midlands'] = new Array();
_leftmap_data['midlands']['name'] = 'Midlands';
_leftmap_data['midlands']['count'] = 8;
_leftmap_data['midlands']['left'] = 117;

_leftmap_data['london'] = new Array();
_leftmap_data['london']['name'] = 'London';
_leftmap_data['london']['count'] = 1;
_leftmap_data['london']['left'] = 161;
_leftmap_data['london']['url'] = 'christmas-parties-london';

leftmap_europe_height = 160;

function leftmap_draw_header () {
	document.write('<div id="leftmap" class="leftmap" onmouseover="leftmap_area_over();" onmouseout="leftmap_area_out();" style="height: '+(401+leftmap_europe_height)+'px;">');
}

function leftmap_draw_footer () {
	var letters = new Array('a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v','w','x','y','z');
	document.write('<div id="leftmap_map" class="map"></div>');
	for (var i = 0; i < _leftmap_order.length; i++) {
		document.write('<div id="leftmap_'+_leftmap_order[i]+'" class="'+_leftmap_order[i]+'-over"></div>');
	}
	document.write('<div id="leftmap_heading" class="heading"><table class="set"><tr><td class="set"><table class="content"><tr><td class="text"><nobr id="leftmap_text">Select a region</nobr></td><td class="icon"><div id="leftmap_icon" class="icon"></div></td></tr></table></td></tr></table></div>');
	document.write('<div id="leftmap_browse"></div>');
	document.write('<div id="leftmap_container_left" class="container-left" style="height: '+(451+leftmap_europe_height)+'px;"><div></div></div><div class="container-topleft"></div><div id="leftmap_container_bottomleft" class="container-bottomleft" style="margin-top: '+(354+leftmap_europe_height)+'px;"></div><div class="container-top"></div><div id="leftmap_container_bottom" class="container-bottom" style="margin-top: '+(391+leftmap_europe_height)+'px;"></div>');
	document.write('<div id="leftmap_europe_title" class="leftmap-europe-title"></div>');
	document.write('<div id="leftmap_clickarea" class="clickarea">');
	for (var i = 0; i < _leftmap_order.length; i++) {
		for (var c = 0; c < _leftmap_data[_leftmap_order[i]]['count']; c++) {
			document.write('<span class="'+_leftmap_order[i]+'-'+letters[c]+'" onclick="leftmap_click(this);" onmouseover="leftmap_over(this);" onmouseout="leftmap_out();"></span>');
		}
	}
	document.write('</div>');
	document.write('</div><div id="leftmap_whitecover" class="leftmap-whitecover" style="margin-top: '+(0-405-leftmap_europe_height)+'px; height: '+(420+leftmap_europe_height)+'px;"></div>');
}





