<!--HEAD OF INDEX.HTML -->
<head>
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script>
function hash_change()
{$('#import_div').load(location.hash.substring(1,location.hash.length))}
window.onhashchange=hash_change;
window.onload=hash_change; if(window.location.hash=='')window.location.replace('#start.html')
</script>
</head>
<!--BODY OF INDEX.HTML -->
<body>
<!--SIMPLE MENU:-->
<a href="#start.html">Home</a>
<a href="#page2.html">Page 2</a>
<a href="javascript
: void(0)" onclick="location='#page3.html'; return false">Page 3</a>
<!-- THE DIV THAT RECEIVES EXTERNAL CONTENT -->
<div id="import_div"></div>
</body>
Bookmarks