$(function(){
	var conf = {
		className : 'externalLink'
	};
	$('a[@href^="http"]').click(function(){
		var st = this.href;
		if (st.indexOf("happy-reform.net")==-1) {
			window.open(this.href, "_blank");
			return false;
		}
	}).addClass(conf.className);
});
