$(document).ready(function(){
	if($.browser.msie && $.browser.version == 8) {
	    $('#ie-info').load('You are using IE8 in version '+ document.documentMode +' compatible mode.');
	}

	$.historyInit(function (hash) {
		if(hash) {
		    $("#load").load(hash + ".html");
		} else {
		    // start page
		    $("#load").load('home3.html'); 
		}
	    });
	
	$(".history-links a").click(function(){
		var hash = this.href;
		hash = hash.replace(/^.*#/, '');
		$.historyLoad(hash);
		return false;
	    });
    });




