var map;
var geocoder = new GClientGeocoder();
var holdVars = new Object();





function initmap(){


	resizeStuff();

	//	document.getElementById("header").style.width = document.getElementById("container").scrollWidth+'px';
		if(GBrowserIsCompatible()){
			map = new GMap2(document.getElementById("map"));
			var loc = new GLatLng(38.5632, -121.4004);
			map.setCenter(loc, 13);
			map.addControl(new GSmallMapControl());		
		//	map.addControl(new GMapTypeControl());	
		}
				


		
}



window.onload = initmap;
window.onunload = GUnload;
window.onresize = resizeStuff;



function resizeStuff(){

}


