$(function(){
	$('input[type=text]').focusin(function(){
			if (this.defaultValue == this.value) this.value = '';
		})
		.focusout(function(){
			if (this.value == '') this.value = this.defaultValue;	
		});
		setUpMaps();
})

function setUpMaps () {
	if (GBrowserIsCompatible()) {
		links = '<span><a href="#" id="MmgMap">Find our location in Guelph</a></span>';
		links += '<span><a href="#" id="TorMap" >From Toronto</a></span>';
		links += '<span><a href="#" id="KwMap">From Kitchener/Waterloo</a></span>';
		links += '<span><a href="#" id="LonMap">From London</a></span>';
		links += '<span><a href="#" id="HamMap">From Hamilton</a></span>';
		links += '<span><a href="#" id="BarMap">From Barrie</a></span>';
		$('div.vcard').append(links);
		boxContent = '<div id="directions"></div><div id="GMap"></div><p id="lbLink"><a href="http://maps.google.ca/maps/place?cid=11783526350299982841&q=MacMillan+Marketing+Group&hl=en&cd=1&cad=src:pplink&ei=jGRCS7yWIJ-SNeHSuf4I">Get more detailed directions on Google Maps</a></p>';
		$('a#MmgMap').colorbox({html:'<div id="GuelphMap"></div><p id="lbLink"><a href="http://maps.google.ca/maps/place?cid=11783526350299982841&q=MacMillan+Marketing+Group&hl=en&cd=1&cad=src:pplink&ei=jGRCS7yWIJ-SNeHSuf4I">Get more detailed directions on Google Maps</a></p>', width: "850px",height: "700px", opacity: 0.75, title:'MacMillan Marketing Group in Guelph', onComplete:function() {
			showMMG()
		}});
		$('a#TorMap').colorbox({html:boxContent, width: "980px",height: "700px", opacity: 0.75, title:'Directions from Toronto to MacMillan Marketing Group', onComplete:function() {
			showMap(43.691707903073805, -79.38995361328125)
		}});
		$('a#KwMap').colorbox({html:boxContent, width: "980px",height: "700px", opacity: 0.75, title:'Directions from Kitchener/Waterloo to MacMillan Marketing Group', onComplete:function() {
			showMap(43.45890015705449, -80.50678253173828)
		}});
		$('a#LonMap').colorbox({html:boxContent, width: "980px",height: "700px", opacity: 0.75, title:'Directions from London to MacMillan Marketing Group', onComplete:function() {
			showMap(42.994603451901305, -81.25419616699219)
		}});
		$('a#HamMap').colorbox({html:boxContent, width: "980px",height: "700px", title:'Directions from Hamilton to MacMillan Marketing Group', opacity: 0.75, onComplete:function() {
			showMap(43.278205132315556, -79.87335205078125)
		}});
		$('a#BarMap').colorbox({html:boxContent, width: "980px",height: "700px", opacity: 0.75, title:'Directions from Barrie to MacMillan Marketing Group', onComplete:function() {
			showMap(44.3920889646517, -79.69104766845703)
		}});
	}
}

function showMap(lat, lon) {
	var map = new GMap2(document.getElementById("GMap"));
	map.setUIToDefault();
	map_directions = new GDirections(map, document.getElementById("directions"));
	map_directions.load(lat + "," + lon + " to 43.5500605554884, -80.25635004043579");
} 

function showMMG() {
	var map = new GMap2(document.getElementById("GuelphMap"));
	point = new GLatLng(43.5500605554884, -80.25635004043579);
	map.setCenter(point, 13);
	map.setUIToDefault();
	map.addOverlay(new GMarker(point));
}
