function initialize() {
  if (GBrowserIsCompatible()) {
    var map = new GMap2(document.getElementById("map_canvas"));
		map.addControl(new GSmallMapControl());
		
			var html = '<div style="width:270px; padding-right:10px;">'+
               '<a href="#"><h3>Lukas videregående skole</h3></a><br>'+
            	 'Vikhov<br>'+
							 '7560 Vikhov<br>'+
							 'Tlf: 73 97 33 70<br>'+
							 '<a href="http://www.lukas.vgs.no.no">www.lukas.vgs.no</a>'+
            	 '</div>';

		
		map.setCenter(new GLatLng(63.428556712354926, 10.447311401367188), 11);
		
		window.setTimeout(function() {
      map.panTo(new GLatLng(63.42302755601735, 10.547561645507812));
		}, 2000);
		
		window.setTimeout(function() {
      map.panTo(new GLatLng(63.43944871657083, 10.640323162078857));
		}, 4000);
		
		window.setTimeout(function() {
     var marker = new GMarker(new GLatLng(63.43944871657083, 10.640323162078857));
		}, 5000);
		
		window.setTimeout(function() {
     var marker = new GMarker(new GLatLng(63.43944871657083, 10.640323162078857));
		 map.addOverlay(marker);
		 marker.openInfoWindowHtml(html);
		}, 7000);
	
		window.setTimeout(function() {
     map.setZoom(12)
		}, 8500);
		
		window.setTimeout(function() {
     map.setZoom(13)
		}, 9500);
		
		window.setTimeout(function() {
     map.setZoom(14)
		}, 11000);

		
		
    
			
			
    
    
		
//  map.setCenter(new GLatLng(63.43944871657083, 10.640323162078857), 12);
    
  }
}
