$(function(){
	$('#header ul li.simplified a').attr('target', '_self').attr('href', 'http://' + document.domain);
	$('#header ul li.traditional a').attr('target', '_self').attr('href', 'http://' + document.domain + ':81');
	$('#header ul li.simplified a').click(function (event) {
		var host = document.location.host;
		if (host.substr(host.length - 3, 1) != ':') {
			return false;
		}
	});
	$('#header ul li.traditional a').click(function (event) {
		var host = document.location.host;
		if (host.substr(host.length - 3, 1) == ':') {
			return false;
		}
	});
	
	$('#menu ul.nav li.simplified a').click(function (event) {
		return false;
	});
	$('#menu ul.nav li.traditional a').click(function (event) {
		return false;
	});
	
});

