$(document).ready(function(){
	$(".globalnavi li:last").css("background", "none");
	$(".globalnavi li:last a").css("margin", "0px");
	$("a[rel='external']").click(function(){
		if ($(this).attr("href") != "") {
			if ((! $(this).attr("id")) && ($(this).attr("id") != "")) {
				window.open($(this).attr("href"), $(this).attr("id"));
			} else {
				window.open($(this).attr("href"));
			}
		}
		return false;
	});
});

