function showHome(){
	
	showInit();
	$('#hm').css("display" , "inline" );
	
	
}

function showComment(){
	
	showInit();
	
	$('#comment').css("display" , "inline" );
}

function showEmp(){
	
	showInit();
	
	$('#emp').css("display" , "inline" );

}

function showInit(){
	
	$('#hm').css("display" , "none" );
	$('#emp').css("display" , "none" );
	$('#work').css("display" , "none" );
	$('#comment').css("display" , "none" );
	
}

function showWork(){
	
	showInit();
	
	$('#work').css("display" , "inline" );
	
}

function gMapLoad( id ) {
	 if (GBrowserIsCompatible()) {
        
		var map = new GMap2(document.getElementById(id));
        map.addControl(new GSmallMapControl());
        
        // http://www.google.co.jp/maps?ie=UTF8&ll=32.883709,130.012883&spn=0.001779,0.002081&z=19
        var point = new GLatLng(32.883709,130.012883);
        map.setCenter(new GLatLng(32.9,129.96), 12);
        
        var mp = new GLatLng(point.lat(), point.lng());
        var marker = new GMarker(mp);
        map.addOverlay(marker);

   }
}