Pagelime is pretty awesome so far, bravo to the Limeteam. Tom's been kind enough to sort out a few issues i had, one still bothering me is a Javascript slideshow i use on the main page of http://rspca-brighton.com. I cant figure out how to edit the images on this page as the images are coded in the javascript itself, rather than in html, anyone have any ideas on what i can do?:
<script type="text/javascript">
//<![CDATA[
<!--
var image1=new Image()
image1.src="rspca.jpg"
var image2=new Image()
image2.src="happyhome.jpg"
var image3=new Image()
image3.src="brian-and-molly.jpg"
//-->
//]]>
</script>
Heres the rest of the code in the body relating to the javascript code:
<div id="right"></div>
<div class="c1">
<script type="text/javascript">
//<![CDATA[
<!--
var step=1
function slideit(){
if (!document.images)
return
document.images.slide.src=eval("image"+step+".src")
if (step<12)
step++
else
step=1
setTimeout("slideit()",6500)
}
slideit()
//-->
//]]>
</script></div>