jQuery(document).ready(function($) {
	
	/* PNG:s in IE 6 */
	$('body').pngFix( );
	
	/* Outbound links */
	$("#page a[href^=http]").each(
	    function(){
			if(this.href.indexOf(location.hostname) == -1) {
				$(this).attr({
					target: "_blank",
					title: this.title
				});
			}
		}
	);
});