//200912

//IE6
try { 
	document.execCommand('BackgroundImageCache', false, true); 
} catch(e) {} 

//************************************
//Google Maps
function initialize(){
	if (GBrowserIsCompatible()){
		var map = new GMap2(document.getElementById("gmap"));
		map.setCenter(new GLatLng(33.9609, 133.2840), 16);

		//Create our "tiny" marker icon
		var tinyIcon = new GIcon();
		tinyIcon.image = "http://labs.google.com/ridefinder/images/mm_20_red.png";
		tinyIcon.shadow = "http://labs.google.com/ridefinder/images/mm_20_shadow.png";
		tinyIcon.iconSize = new GSize(12, 20);
		tinyIcon.shadowSize = new GSize(22, 20);
		tinyIcon.iconAnchor = new GPoint(6, 20);
		tinyIcon.infoWindowAnchor = new GPoint(5, 1);

		//Set up our GMarkerOptions object literal
		markerOptions = { icon:tinyIcon };
		var point = new GLatLng(33.961404, 133.285210);
		map.addOverlay(new GMarker(point, markerOptions));

	window.onunload = GUnload;

	}
}

//************************************
//URL
function MyLocation(href,t){
	if(t){
		window.open(href,"");
	}else{
		location.href = href;
	}
}

//************************************
//スタッフページ ランダム
function MyStaffPage(k){

	var p = new Array();
	p[0] = "saeki";
	p[1] = "jinno";
	p[2] = "tanaka";
	p[3] = "tachibana";
	p[4] = "ono";
	p[5] = "itou";
	p[6] = "sogawas";
	p[7] = "yamanaka";
	
	if(k == -1){
		var n = Math.floor(Math.random() * (p.length - 1));
	}else{
		var n = k+1;
		if(n >= p.length){ n = 0; }
	}
	//alert(n);

	var href = "http://www.1139.co.jp/contents/staff/" + p[n] + ".html";
	//var href = "http://www.dcj.jp/test/fuji/contents/staff/" + p[n] + ".html";
	location.href = href;

}

