$(document).ready(function() {
	var baseUrl = "http://www.kadoyan.com";
	$("a[@href^=http://]").not("[@href^="+baseUrl+"]").addClass("outerlink");
	$("a[@href^=https://]").addClass("outerlink");
	//
	$("a[@href^=http://]").not("[@href^="+baseUrl+"]").click(function() {
			window.open($(this).attr("href"));
			return false;
	});
	//
	$("a[@href^=https://]").click(function() {
			window.open($(this).attr("href"));
			return false;
	});
});