

// GOOGLE MAP ---------------------------------------------------
function load() {
  if (GBrowserIsCompatible()) {
	var map = new GMap2(document.getElementById("map"));
	map.setCenter(new GLatLng(51.481557,-3.405772), 18);
	map.addControl(new GLargeMapControl());			//large zoom and arrows
	map.addControl(new GMapTypeControl());			//Satellite, Hybrid, etc..
	map.setMapType(G_HYBRID_MAP);					//Set default type
	map.addOverlay(new GMarker(new GLatLng(51.48180,-3.406000)));	//Set to the exact position of BYDD	 
  }
}

// CYCLE -------------------------------------------------------------------
$(document).ready(function() {
    $('#slideshow').cycle({
        timeout:5000
    });
    $('#button').toggle(
	  function () {
		$('#slideshow').cycle('pause');
		$(this).attr("src","/graphics/play.png");
	  },
	  function () {
		$('#slideshow').cycle('resume', true);
		$(this).attr("src","/graphics/pause.png");
	  }
	);
});

