// ===========================================

// Common JS

// ===========================================


// popup
// -------------------------------------------

function openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}



// mail
// -------------------------------------------

function mailLink(Num, Type) {
	var mail3 = "r.jp";
	var mail1 = "eniwacc";
	var mail2 = "i&#64;eniwa-cci.o";
	//3パートに分解して1→2→3の順に記述
	//&#64;＝＠
	var mail = mail1 + mail2 + mail3;
	var id = "mailLink" + Num;
	
	if(Type == 2) {
		document.getElementById(id).innerHTML = "<a href=\"mailto:" + mail + "\">" + mail + "</a>";
		//メールアドレスのリンクが貼られる
	} else {
		var txt = document.getElementById(id).innerHTML;
		document.getElementById(id).innerHTML = "<a href=\"mailto:" + mail + "\">" + txt + "</a>";
		//現在の文章にリンクが貼られる
	}
}



// scroll
// -------------------------------------------

$(document).ready(function() {
  $("a[href*='#']").easingScroll({
		easing: "easeOutQuad"
	});
});


// rollover
// -------------------------------------------

$(document).ready(function() {
  $('.over, #global-navi a img, #sub-menu a img').rollover();
});


// form
// -------------------------------------------

$(document).ready(function() {
    $("form input[type='text'], textarea").focus(function() {
	      $(this).addClass("focus");
    });
    $("form input[type='text'], textarea").blur(function() {
	      $(this).removeClass("focus");
    });

    $(".submit input[type='submit'], .submit input[type='button']").hover(
		function() {
	      $(this).addClass("hover");
    },
		function() {
	      $(this).removeClass("hover");
    });
});



