$(function() {
	//自ドメイン以外のリンクは新規ウインドウで開く
	var domains = [document.domain,'www.server-outsourcing.jp','server-outsourcing.jp'];
	var domain_selector = "",left_str= ":not([href^=http://",left_str_https= ":not([href^=https://",right_str = "])";
	domain_selector = left_str+domains.join(right_str+left_str)+right_str;
	domain_selector+= left_str_https+domains.join(right_str+left_str_https)+right_str;
	$("a[href^=http]"+domain_selector+":not(:has(img))").addClass("externallink");
	$("a[href^=http]"+domain_selector).click(function(){
	window.open(this.href,"_blank");
	return false;
	});
	$("a.exlink").click(function(){
	window.open(this.href,"_blank");
	return false;
	});
});
