 	var gothambold = {src: '/_flash/gotham-bold.swf'};
	var gothambook = {src: '/_flash/gotham-book.swf'};
	var gothamlight = {src: '/_flash/gotham-light.swf'};

    sIFR.activate(gothambold);
	sIFR.activate(gothambook);
	sIFR.activate(gothamlight);

    sIFR.replace(gothamlight, {
	  selector: '.secondary h1', 
	  wmode: 'transparent', 
	  css: [ '.sIFR-root { font-size:36px; font-weight:normal; color:#ffffff; background:transparent }' ]	  
    });
	
	
	window.onload = function() {
	
	
	
		if(document.getElementById("map")) {
	
			var latlng = new google.maps.LatLng(52.46778656254709, -1.9556309000000005);
			var myOptions = {
			  zoom: 13,
			  center: latlng,
			  scaleControl: true,
			  mapTypeId: google.maps.MapTypeId.ROADMAP
			};
			
			var map = new google.maps.Map(document.getElementById("map"), myOptions);
		
			var contentString = '<div class="map-content">'+
				'<p><strong>Harborne Foot & Back Clinic,</strong> <br />165 Knightlow Rd, Harborne, B17 8PY</p>'+
				'<p><a href="http://maps.google.co.uk/maps?f=q&source=s_q&hl=en&geocode=&q=165+Knightlow+Rd,+Harborne,+B17+8PY+&sll=53.800651,-4.064941&sspn=17.83271,59.194336&ie=UTF8&hq=&hnear=165+Knightlow+Rd,+Birmingham+B17+8,+United+Kingdom&z=16&iwloc=A&iwstate1=dir" target="_blank">Get directions</a></p>'+
				'</div>'+
				'</div>';
			
			var infowindow = new google.maps.InfoWindow({
				content: contentString,
				maxWidth: 300,
				minHeight: 300
			});
			
			var marker = new google.maps.Marker({
				position: latlng,
				map: map,
				title:"Harborne"
			});
			
			infowindow.open(map,marker);
			
			google.maps.event.addListener(marker, 'load', function() {
			  infowindow.open(map,marker);
			});
		}
	
	}

	
	
