function load() {
	if (GBrowserIsCompatible()) {
		var map = new GMap2(document.getElementById("map"));
		//map.setCenter(new GLatLng(37.4419, -122.1419), 13);
		map.setCenter(new GLatLng(47.72052, -122.1419), 13);
	}
}
$(function() {
	slideshow();
});
function slideshow() {
	var img = document.getElementById('head_image');
	setInterval(function() {
		nextSlide(img);
	},5000);
}
function nextSlide(img) {
	//Random number from [1,high]
	var high = 5;
	var num = Math.floor(Math.random()*high)+1;
	img.src = "img/slideshow/"+num+".jpg";
}

