if(navigator.appVersion.indexOf("Mac") != -1){
	document.write('<style type="text/css">');
	document.write('div#salon-data { bottom: 14px; }');
	document.write('</style>');
}

function openBlog() {
	window.open("http://ameblo.jp/cerisaie-hair/");
}
function openMap() {
	window.open("http://maps.google.co.jp/maps?f=q&hl=ja&q=%E7%A6%8F%E5%B2%A1%E5%B8%82%E4%B8%AD%E5%A4%AE%E5%8C%BA%E5%B9%B3%E5%B0%BE2-13-23%E3%80%80&layer=&ie=UTF8&z=18&ll=33.573951,130.403951&spn=0.002784,0.004388&om=1");
}

function showDisplay(e,idName){
	if(document.all) e = event;
	var obj = document.getElementById(idName);
	obj.style.display = 'block';
	var st = Math.max(document.body.scrollTop,document.documentElement.scrollTop);
	if(navigator.userAgent.toLowerCase().indexOf('safari') >= 0) st = 0; 
	var leftPos = e.clientX;
	if(leftPos < 0) leftPos = 0;
	obj.style.left = leftPos + 'px';
	obj.style.top = e.clientY - obj.offsetHeight + st + 'px';
}	
function hideDisplay(idName){
	document.getElementById(idName).style.display = 'none';
}