// Mailto
// ----------------------------------------------------------

function mlTo(Num, Type, ml2, ml1) {
	if(!ml1) {ml1 = "aaa";}
	if(!ml2) {ml2 = "multilingual-experts.com";}
	var mail = ml1 + "&#64;" + ml2;
	var ID = "mlTo" + Num;
	
	if(Type == 1) {
		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>";
		//現在の文章にリンクが貼られる
	}
}


// Fade
// ----------------------------------------------------------

$(function(){
	$("#topic .topic-body").css('padding-left','5em');
	$("#topic .topic-body").innerfade({ speed: 1000,timeout: 5000 });
});


// Form
// ----------------------------------------------------------

$(function() {
 	$("form p.submit input").hover(
      function() {
				$(this).css({backgroundPosition: "0 -22px"});
			},
      function() {
				$(this).css({backgroundPosition: "0 0"});
			}
	);
 	$("form dd input,form dd textarea").focus(
      function() {
				$(this).css({backgroundColor: "#FFE4E4",color: "#000000"});
			}
	);
 	$("form dd input,form dd textarea").blur(
      function() {
				$(this).css({backgroundColor: "#ECECEC",color: "#666666"})
			}
	);

});


// Blank
// ----------------------------------------------------------

$(function() {
  $("#content .content-body a").each(function(i) {
    var attr = $(this).attr('target');
    if(attr == '_blank') {
      $(this)
        .attr('class','blank')
        .attr('title','リンク先が別ウィンドウで開きます');
    }
  });
});
