This code will scroll an iframe - maybe worth trying
Code:
<html>
<head>
<script src="jquery.js"></script>
<script src="jquery.scrollto.js"></script>
<script type="text/javascript">
<!-- BEGIN HIDING
function loadorder() {
var tid = setInterval(dayScroll, 12500);
function dayScroll () {
$("iframe").scrollTo( '0', 0, {duration:3000, easing:'linear'} ).scrollTo( '100%', 0, {duration:3000, easing:'linear'} ).scrollTo( '100%', 0, {duration:3000, easing:'linear'} ).scrollTo( '0', 0, {duration:3000, easing:'linear'} );
};
dayScroll ();
};
-->
</script>
</head>
<body>
<iframe id="iframe" name="iframe" onload=loadorder() src="http://www.middleforth.lancs.sch.uk/index.php" width="100%" height="400px"></iframe>
</body>
</html> You'll need to get the jquery.js file and the jquery.scrollto.js plugin and put them in same folder as this html file
See it in action at www.middleforth.lancs.sch.uk/cal/iscroll.html
regards
Simon