HTML CODING? I have a slideshow on my page but want to insert text on each picture, how do i do this?

I have the following in my <head> section:
<script language="JavaScript1.1">
<!--

//Pixelating Image slideshow
//Copyright Dynamic Drive 2001
//Visit http://www.dynamicdrive.com for this script

//specify interval between slide (in mili seconds)
var slidespeed=2000
//specify images
var slideimages=new Array("beulah_full.jpg","cute-small-apartment-8.jpg","family.jpg")
//specify corresponding links
var slidelinks=new Array("body.html","creativity.html","love.html")
//specify corresponding headers
var slidelinks=new Array("Tattoos","Decorate","Family")

var imageholder=new Array()
var ie55=window.createPopup
for (i=0;i<slideimages.length;i++){
imageholder=new Image()
imageholder.src=slideimages
}

function gotoshow(){
window.location=slidelinks[whichlink]
}

//-->
</script>

The links go with the pics but I'm not sure how to add text to each picture. The following is in the <body> :


<a href="javascript:gotoshow()"><img src="beulah_full.jpg" name="slide" border=0 style="filter:progid:DXImageTransform.Microsoft.Pixelate(MaxSquare=15,Duration=1)"></a>

<script language="JavaScript1.1">
<!--
var whichlink=0
var whichimage=0
var pixeldelay=(ie55)? document.images.slide.filters[0].duration*1000 : 0
function slideit(){
if (!document.images) return
if (ie55) document.images.slide.filters[0].apply()
document.images.slide.src=imageholder[whichimage].src
if (ie55) document.images.slide.filters[0].play()
whichlink=whichimage
whichimage=(whichimage<slideimages.length-1)? whichimage+1 : 0
setTimeout("slideit()",slidespeed+pixeldelay)
}
slideit()

//-->
</script>

TEN POINTS if you can help me get this to work. Thank you!
something like this would be ideally what I am aiming for, but any help will do!

http://thewellwrittenwoman.com/
 
Back
Top