$(document).ready(function(){
	$("a[rel='external']").attr({
		target: "_blank"
	});
	$("#logotype img").pause(500).fadeIn("slow");
});

$.fn.pause = function(duration) {
    $(this).animate({ dummy: 1 }, duration);
    return this;
};

