// JavaScript Document
		  var map = null;
		
		  function GetMap(){
			 map = new VEMap('myMap');
			 map.SetDashboardSize(VEDashboardSize.Small);
			 map.LoadMap();
			 map.SetMapStyle(VEMapStyle.Hybrid);
			 map.SetCenterAndZoom(new VELatLong(52.194829, 0.137434), 14);
			 
			 AddPushpin(52.188235,0.143801,'Swiss laundry','149 Cherry Hinton Road<br/>Cambridge CB1 7BY<br/><br/>Tel: 01223 247513<br/><a href="mailto:sales@swisslaundry.co.uk">Email Swiss Laundry</a><br/><br/><b>Opening Hours:</b><br/>Monday to Friday, 8.30am to 5pm<br/>Saturday 8.30am to 12.30pm<br/><br/><strong><a href="http://www.multimap.com/s/OAnI1HZI" target="_blank">Click Here for Driving Directions</a></strong>');
			 
			 AddPushpin(52.194829,0.137434,'Swiss at the Station','Railway Station Buildings<br/>Cambridge CB1 2JH<br/><br/>Tel: 01223 309139<br/><a href="mailto:swissdrycleaners@fsmail.net">Email Swiss at the Station</a><br/><br/><b>Opening Hours:</b><br/>Monday to Friday, 8am to 8pm<br/><br/><strong><a href="http://www.multimap.com/s/jyg4Sohy" target="_blank">Click Here for Driving Directions</a></strong>');
		  } 
		    
		  var icon = "img/swfavicon.png";

				
		  function AddPushpin(lat,long,title,desc){
		  	//O-O programming ftw. Beat that patrick.
			 var shape = new VEShape(VEShapeType.Pushpin,new VELatLong(lat,long));
			 //Set the icon
			 shape.SetCustomIcon(icon); shape.SetTitle(title);
         	 shape.SetDescription(desc);
			 //Add the shape the the map
			 map.AddShape(shape);
		  }