﻿//////////////////////////////////////////////////////////////////////////////////////////////////////
//
// e_m.js
//
// Copyrightc 2011 Makiou Nizimura Allright Resarved.
//
//////////////////////////////////////////////////////////////////////////////////////////////////////


$(function() {
	 
	e_m_act();
});

/** */
function e_m_act() {
	
	var _e_m = new e_m();
	
	_e_m.set_e_m("e_m");
}

/** */
function e_m() {
	
	var _this = this;
	
	this.address = String.fromCharCode(99,111,110,116,97,99,116,64,119,121,122,45,100,101,115,105,103,110,46,99,111,109);

	this.href = String.fromCharCode(108,111,99,97,116,105,111,110,46,104,114,101,102,61);
	this.mailto = String.fromCharCode(109,97,105,108,116,111,58);
	
	this.set_e_m = function(tgtclass) {
			
		$("." + tgtclass).replaceWith('<a class="mailto" href="javascript:mailto()">'+ _this.address +'</a>');
	}
}

/** */
function mailto() {
	
	var _e_m = new e_m();
	
	eval(_e_m.href + "'" +_e_m.mailto + _e_m.address + "'");	
}





