/*!***********************************************************************
	Copyright 2012 Simon Wakeman www.simonwakeman.com

	All rights reserved. The information contained in this document
	is confidential and may also be proprietary and trade secret. It
	is the intellectual property of Simon Wakeman, and without
	prior written approval from Simon Wakeman no part of this
	document may be reproduced or transmitted in any form or by any
	means, including but not limited to electronic, mechanical,
	photocopying or stored in any retrieval system of whatever nature.
	The use of copyright notice does not imply unrestricted public
	access to any part of this document. 
*************************************************************************/
var arrInfo=Array(),arrDetailsURL=Array(),arrLat=Array(),arrLng=Array(),nCompanies=0;function addCompany(a,b,e,c,f,d,g){arrInfo[nCompanies]="<div style='0; padding: 0; white-space: nowrap; font-family: arial, helvetica, sans-serif; font-size: 12px; color: #000'>";arrInfo[nCompanies]+="<h2 style='margin: 0 0 10px 0; font-weight: bold; text-align: left; font-size: 14px; color: #039'>"+a+"</h2>";arrInfo[nCompanies]+="Telephone: "+c+"<br/>";arrInfo[nCompanies]+="Email: <a style='color: #04bab1; text-decoration: none' href='mailto:"+e+"'>"+e+"</a><br/>";arrInfo[nCompanies]+="Website: <a style='color: #04bab1; text-decoration: none' href='http://"+f+"'>"+f+"</a><br/>";arrInfo[nCompanies]+="<br/>";arrInfo[nCompanies]+="<a style='color: #04bab1; text-decoration: none' href='http://www.bmea.org/member/"+b+"'>View full details...</a><br/>";arrInfo[nCompanies]+="<a style='color: #04bab1; text-decoration: none' href='http://maps.google.co.uk/maps?daddr="+d+","+g+"' onclick='window.open(this.href); return false' onkeypress='window.open(this.href); return false'>Get directions...</a>";arrInfo[nCompanies]+="</div>";arrDetailsURL[nCompanies]=b;arrLat[nCompanies]=d;arrLng[nCompanies]=g;nCompanies++}function initGmap(){if(objMap=document.getElementById("gmap")){var b=new google.maps.Map(objMap,{center:new google.maps.LatLng(54,-2),mapTypeId:google.maps.MapTypeId.ROADMAP,mapTypeControlOptions:{style:google.maps.MapTypeControlStyle.DROPDOWN_MENU},scrollwheel:false,scaleControl:true,zoom:6}),a=new google.maps.InfoWindow(),c=new google.maps.MarkerImage("http://www.bmea.org/wp-content/themes/bmea2011/js/images/location.png",new google.maps.Size(16,16),new google.maps.Point(0,0),new google.maps.Point(8,8));for(i=0;i<nCompanies;i++){addLocationMarker(b,a,c,i)}}}google.maps.event.addDomListener(window,"load",function(){initGmap()});function addLocationMarker(d,c,e,b){var a=new google.maps.Marker({position:new google.maps.LatLng(arrLat[b],arrLng[b]),map:d,icon:e});google.maps.event.addListener(a,"mouseover",function(){c.setContent(arrInfo[b]);c.open(d,a)});google.maps.event.addListener(a,"click",function(){window.location="http://www.bmea.org/member/"+arrDetailsURL[b]})};
