$(document).ready(function(){

	$("#header").html( '<a href="index.html">Home</a><a href="information.html">Information</a><a href="sitemap.html">Site map</a>' );


	$(".hovImg, #navi ul li a img, #hos .hn a img").hover(
		function(){
			this.src = this.src.replace('off.','on.');
		},
		function(){
			this.src = this.src.replace('on.','off.');
		}
	);

	$(".newWindow").click(
		function(){
			window.open(this.href); return false;
		}
	);

	$(".goBack").click(
		function(){
			history.back(); return false;
		}
	);

	$(".goTop").click(
		function(){
			$("html,body").animate({ scrollTop: 0 }, 500); return false;
		}
	);

});

function facImgOn( src ) {
	$('#facimg').attr( 'src', src );
}

