/*
Tyrrell & Company - Contact Page
Multimap SDK/API
http://www.multimap.com/openapidocs/1.2/
*/

	var mapviewer;
	function onLoad() {
		
		//Create Vars to be used
		var mapviewer;
		var pan_zoom_widget;
		var small_pan_zoom_widget;
		var small_zoom_widget;
 
		//Add the map
		mapviewer = new MMFactory.createViewer( document.getElementById( 'mapviewer' ) );
		mapviewer.goToPosition( new MMLocation( new MMLatLon( 52.12871, 0.1809 ), 17 ));
		
		//Get current map position
		var pos = mapviewer.getCurrentPosition();  
		
		//Create New Marker for Tyrrell & Company Postcode
		marker = mapviewer.createMarker( pos, {'label': 'Default marker'} );
		
		//Call & Load Zoom Widget
		small_pan_zoom_widget = new MMSmallPanZoomWidget ();
		mapviewer.addWidget ( small_pan_zoom_widget );
		
		// Setup Marker
		var marker = mapviewer.createMarker ( mapviewer.getCurrentPosition() );
		
		// Set Marker Content
		var html = '<p style="clear:both;color:#333333;font-family: verdana,helvetica,arial,sans-serif;border-bottom:1px solid #333333; padding-bottom: 4px; margin: 0;">Tyrrell &amp; Company</p><div style="background:none repeat scroll 0 0 #E1EAFF; clear:both; margin:5px 0 0;padding:4px;color:#333333;font:62.5% verdana,helvetica,arial,sans-serif;">Get directions <a style="color:#254CB3;text-decoration:none;" href="http://www.multimap.com/directions/?lat_2=52.12871&amp;lon_2=0.1809&amp;countryCode_2=GB&amp;displayName_2=CB22 3JH&amp;qs_2=CB22 3JH&amp;moveMap=-5,-7">to here</a> or<a style="color:#254CB3;text-decoration:none;" href="http://www.multimap.com/directions/?lat_1=52.12871&amp;lon_1=0.1809&amp;countryCode_1=GB&amp;displayName_1=CB22 3JH&amp;qs_1=CB22 3JH&amp;moveMap=-5,-7"> from here</a></div>';
		marker.setInfoBoxContent ( html, { } );
		
		//Open Marker
		marker.openInfoBox ();


	}

	MMAttachEvent( window, 'load', onLoad );
