/*---------------------------------------------------------
  ERE : Common
----------------------------------------------------------*/

/* rollover
----------------------------------------*/
$(function(){
	$("img.rollover").mouseover(function(){
		$(this).attr("src",$(this).attr("src").replace(/^(.+)(\.[a-z]+)$/, "$1_o$2"));
	}).mouseout(function(){
		$(this).attr("src",$(this).attr("src").replace(/^(.+)_o(\.[a-z]+)$/, "$1$2"));
	}).each(function(){
		$("<img>").attr("src",$(this).attr("src").replace(/^(.+)(\.[a-z]+)$/, "$1_o$2"));
	});
});

/* mail
----------------------------------------*/
function mail( subject )
{
    sendTo = "mailto:";
    sendTo += "info";
    sendTo += "@";
    sendTo += "ere.or.jp";
    sendTo += '?subject=' + EscapeMailString(subject) ;
//    alert( sendTo );
    location.href=sendTo;
}

function EscapeMailString( text )
{
   if (navigator.userAgent.indexOf("Macintosh") != -1) {
      return text.replace( /\|\|/g, "%0d%0a" );
   } else {
      return EscapeUTF8(text).replace( /%7C%7C/ig, "%0d%0a" );
   }

}

/* pagetop
----------------------------------------*/
$(function(){
   $("a[href*='#']").easingScroll({
				easing: "easeOutExpo",
				duration: 1000
			});
});
