
/**
 *
 * @access public
 * @return void
 **/
function showMap(town){
	$('#bournemouth').css('display','none');
	$('#manchester').css('display','none');
	$('#edinburgh').css('display','none');
	$('#zerofour').css('display','none');

	$('#'+town).css('display','block');
}

/**
 *
 * @access public
 * @return void
 **/
function goToCompany(v){
	switch(v){
		case 'aylesworth':
			document.location.href='http://www.thead.biz/';
			break;
		case 'emergegroup':
			document.location.href='http://www.emergegroup.co.uk/';
			break;
		case 'space':
			document.location.href='http://www.spaceandtime.eu.com';
			break;
		case 'refreshed_media':
			document.location.href='http://www.refreshedmedia.com/';
			break;
		case 'refreshed_wellbeing':
			document.location.href='http://www.refreshedwellbeing.com/';
			break;
		case 'refreshed_membership':
			document.location.href='http://www.refreshedmembership.com/';
			break;
		case 'refreshed_direct':
			document.location.href='http://www.refresheddirect.com/';
			break;
		case 'thinkingjuice':
			document.location.href='http://www.thinkingjuice.co.uk/';
			break;
		default:
			;
	} // switch

}


