Code:
<span id="subtext" class="style2">View excerpts from Shaun's academic journal in Miyazaki, Japan. </span>
Code:
<script type="text/javascript">
function fillsub(n){
subtexts=[];
subtexts[0]='View excerpts from Shaun\'s academic journal in Miyazaki, Japan.';
subtexts[1]='Something about another tab';
subtexts[2]='I think you are getting the idea';
subtexts[3]='More info on a tab';
document.getElementById('subtext').innerHTML=subtexts[n];
}
</script>
Code:
<a href="#" onmouseout="MM_swapImgRestore()" onmouseover="fillsub(0);MM_swapImage('Illustrations','','Home/Source 2/illustrationbon.jpg',1)"><img src="Home/Source 2/illustrationboff.jpg" name="Illustrations" width="46" height="368" border="0" id="Illustrations" /></a>
For each mouseover event, use a fillsub(#); call that corresponds the the subtexts[#] you want displayed.
Bookmarks