
var map = null;

var blueIcon = new GIcon();
blueIcon.image = 'http://www.telestack.com/wp-content/themes/telestack/images/markers/image.png';
blueIcon.shadow = 'http://www.telestack.com/wp-content/themes/telestack/images/markers/shadow.png';
blueIcon.iconSize = new GSize(27,38);
blueIcon.shadowSize = new GSize(46,38);
blueIcon.iconAnchor = new GPoint(14,38);
blueIcon.infoWindowAnchor = new GPoint(14,0);
blueIcon.printImage = 'http://www.telestack.com/wp-content/themes/telestack/images/markers/printImage.gif';
blueIcon.mozPrintImage = 'http://www.telestack.com/wp-content/themes/telestack/images/markers/mozPrintImage.gif';
blueIcon.printShadow = 'http://www.telestack.com/wp-content/themes/telestack/images/markers/printShadow.gif';
blueIcon.transparent = 'http://www.telestack.com/wp-content/themes/telestack/images/markers/transparent.png';
blueIcon.imageMap = [18,0,20,1,22,2,23,3,24,4,24,5,25,6,25,7,26,8,26,9,26,10,26,11,26,12,26,13,26,14,25,15,25,16,25,17,24,18,24,19,23,20,23,21,22,22,22,23,21,24,21,25,20,26,20,27,19,28,18,29,18,30,17,31,17,32,16,33,15,34,15,35,14,36,13,37,12,37,12,36,11,35,11,34,10,33,9,32,9,31,8,30,8,29,7,28,6,27,6,26,5,25,5,24,4,23,4,22,3,21,3,20,2,19,2,18,2,17,1,16,1,15,1,14,0,13,0,12,0,11,0,10,0,9,1,8,1,7,1,6,2,5,3,4,3,3,5,2,6,1,8,0];

window.unload = function() { GUnload(); }
window.onload = function() {
	if (GBrowserIsCompatible()) {
		
		var mapObj = document.getElementById("map");
		if (mapObj != "undefined" && mapObj != null) {
			map = new GMap2(document.getElementById("map"));
			map.setCenter(new GLatLng(54.5814613,-7.2803984), 12, G_NORMAL_MAP);
			map.addControl(new GSmallMapControl());
			map.addControl(new GMapTypeControl());
			
			var point = new GLatLng(54.5814613,-7.2803984);
			var marker = createMarker(point, "<div id=\"gmapmarker\"><div class=\"maptitle\"><strong>Telestack Ltd<\/strong><br /><br /><\/div><div class=\"leftcol\">Bankmore Way East<br />Omagh<br />Co. Tyrone<br />Northern Ireland<br />BT79 0NZ<br /><br /><span class=\"red\">Telephone</span> +44 (0) 28 8225 1100<br /><span class=\"red\">Facsimile</span> +44 (0) 28 8225 2211<br /><span class=\"red\">Contact</span> <a href=\"mailto:info@telestack.com‎\">info@telestack.com<\/a><\/div><div class=\"rightcol\"><\/div><div class=\"xClear\"><\/div><\/div>", blueIcon);
			map.addOverlay(marker);

		}
	} 
	
	else {
		alert("Sorry, the Google Maps API is not compatible with this browser.");
	}
	
}

function createMarker(point, html, icon) {
	var markerOptions = {icon:icon};
	var marker = new GMarker(point, markerOptions);
	GEvent.addListener(marker, "click", function() { marker.openInfoWindowHtml(html); });
	return marker;
}

