Using jquery with Spinneret

I think this is working correctly. I was looking for a way to refresh only one <div> on the page without reloading the whole page. This is what I came up with:
It appears to function as expected; the whole page is obviously not reloading in the browser, just the data.
Any comments or criticisms are welcome. Attached is the project zipped.
Doc
EDIT: It occurred to me that I didn't give credit to Mike G for his help. I've only slightly modified his original code. Thanks Mike! And of course Beau Schwabe's code got me started! Thanks Beau!
DAT
index byte "HTTP/1.1 200 OK", CR, LF, {
} "Content-Type: text/html", CR, LF, CR, LF, {
} "<HTML>", {
} "<HEAD>", {
} "<TITLE>Willoughby Farm</TITLE>"
byte "<script src='http://code.jquery.com/jquery-latest.js'></script>"
byte "<SCRIPT LANGUAGE='JavaScript'>",CR,{
} "function timedRefresh() {",CR,{
} " setTimeout('update()',5000);",CR,{
} " }",CR, {
} "function update() {",CR,{
} " $('#refresh_data').load('/ #refresh_data');",CR,{
} " timedRefresh()",CR, {
} " }",CR, {
} "</SCRIPT>",CR, {
} "</HEAD>"
byte "<BODY Onload='timedRefresh()'>"
It appears to function as expected; the whole page is obviously not reloading in the browser, just the data.
Any comments or criticisms are welcome. Attached is the project zipped.
Doc
EDIT: It occurred to me that I didn't give credit to Mike G for his help. I've only slightly modified his original code. Thanks Mike! And of course Beau Schwabe's code got me started! Thanks Beau!

Comments
What would be nice is a web-camera here so we can check the cat from anywhere!
Works better, spinneret more responsive now and was able to add more images to the slide show now - looks almost like video!
Doc
Question: Does your pictures load from a SD-card or are they stored at an external webserver somewhere?
I have to reorganize my Spinneret myself pretty soon, cause there`s almost no memory left on it.
DAT index byte "HTTP/1.1 200 OK", CR, LF, { } "Content-Type: text/html", CR, LF, CR, LF, { } "<HTML>", { } "<HEAD>", { } "<TITLE>Willoughby Farm</TITLE>" byte "<script src='http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js' ></script>" byte "<script LANGUAGE='Javascript' SRC='http://www.tegacayanimalhospital.com/spinneret/js/timed-refresh.js'></script>" byte "<script type='text/javascript' src='http://www.tegacayanimalhospital.com/spinneret/js/infinite-rotator.js'></script>" byte "<link rel='stylesheet' href='http://www.tegacayanimalhospital.com/spinneret/css/style.css' type='text/css' media='screen' />" byte "</HEAD>" byte "<BODY Onload='timedRefresh();'>" byte "<center>" byte "<iframe src='http://www.tegacayanimalhospital.com/coop_iframe.html' width='1068' height='496'><p>Your browser does not support iframes.</p></iframe>" 'table for dynamic values: byte "<div id='refresh_data'>" byte "<BR><B><FONT FACE=times SIZE=4>Conditions " byte "inside Coop:</FONT></B> " byte "<table><tr><td>" 'wrapper table byte "<table border='1'>" byte "<tr><td><FONT FACE=times SIZE=4>Temp:</td> " byte "<td><FONT FACE=times SIZE=4 COLOR=RED>" temp byte " °F "'<--- This is a place holder ; number is dynamically updated byte "</FONT></FONT></td></tr>" byte "<tr><td><FONT FACE=times SIZE=4>Humidity: </td> " byte "<td><FONT FACE=times SIZE=4 COLOR=RED>" humi byte " % "'<--- This is a place holder ; number is dynamically updated byte "</FONT></FONT></td></tr></table></td>" byte "<td><table border='1'>" byte "<tr><td><FONT FACE=times SIZE=4>Current Light:</td> " byte "<td><FONT FACE=times SIZE=4 COLOR=RED>" num1 byte "0000 " '<--- This is a place holder ; number is dynamically updated byte "</FONT></FONT></td></tr>" byte "<tr><td><FONT FACE=times SIZE=4>Average Light:</td>" byte "<td><FONT FACE=times SIZE=4 COLOR=RED>" num2 byte "0000 "'<--- This is a place holder ; number is dynamically updated byte "</FONT></FONT></td></tr></table></td>" byte "<td><table border='1'>" byte "<tr><td><FONT FACE=times SIZE=4>Door Position</td>" byte "<td><FONT FACE=times SIZE=4 COLOR=RED>" str1 byte " "'<--- This is a place holder ; val is dynamically updated byte "</FONT></FONT></td></tr>" byte "<tr><td><FONT FACE=times SIZE=4>Switch Position</td>" byte "<td><FONT FACE=times SIZE=4 COLOR=RED>" str2 byte " " '<--- This is a place holder ; val is dynamically updated byte "</FONT></FONT></td></tr></table>" byte "</td></tr></table><BR>" byte "<FONT FACE=times SIZE=2>Coop Date and Time: " time1 byte "00/" '<--- month time2 byte "00/20" '<--- day time3 byte " "'<--- year time4 byte " :" '<--- hour time5 byte " :" '<--- minute time6 byte " <BR>" '<--- second byte "</FONT>" byte "</div>" byte "<FONT FACE=times SIZE=2>" byte "(Values Auto-refresh ~5 seconds)</FONT><BR><BR>" byte "</center>" byte "</BODY>" byte "</HTML>" byte 0 buff byte $0[BUFFER_2K+1] resPtr long $0[25] null long $00 dhcpLease long $ff_ff_ff dns_addr byte $0A, $00, $01, $01 mtuBuff long TCP_MTU
Thanks for sharing your code, Doc. It will be useful for me aftherwards.