// common.js ページ共通関数群


  var _gaq = _gaq || [];
  _gaq.push(['_setAccount', 'UA-114536-1']);
  _gaq.push(['_trackPageview']);

  (function() {
    var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
  })();


var userAgent = (window.opera?4:(document.all?3:(document.getElementById?1:(document.layers?2:0))));
var isIE5 = document.getElementById ? 1 : 0;
if (userAgent == 4)
	userAgent = navigator.userAgent.substr(navigator.userAgent.indexOf("Opera")+6, 1) >= 7 ? 5 : 4;

var getElementById;
if (userAgent == 3) getElementById = getElementById_IE;
else getElementById = getElementById_N6;
function getElementById_IE(id) { return document.all(id) }
function getElementById_N6(id) { return document.getElementById(id) }


function MenuOver(srcElement) {
	srcElement.className = "menuItem2"
}
function MenuOut(srcElement) {
	srcElement.className = "menuItem"
}


function Jump(path) {
	if (userAgent == 3)
		event.cancelBubble = true;
	document.location.href = path;
	return false;
}