<html><head>
<link rel='stylesheet' type='text/css' href='main.css'/>
<script src='/scripts/jQuery.js'></script>
<script src='/scripts/jQuery.livequery.js'></script>
<script>
$(document).ready(function() {
$("#menuitem1").click(function() {
$("#Container").load("item1content.php?t=" + new Date().valueOf());
});
});
</script>
</head>
<body>
<table>
<tr>
<td><a id='menuitem1' href='#'>Change Company Policy</a></td>
<td><span id='Container'></span></td>
</tr>
</table>
</body></htm>
<p>Company Policy</p><hr/>
<?php /*read policy from file and echo it out*/ ?>