That looks like a nice script on the video. And it should be very easy to do, if I understand what you want.
What you need is some <div id="1a" onmouseover="showstory(this)"> tags for the "link" (if you want to call them that) and some <div id="1ab" style="display:none"> tags for the stories. Then you create a function in JS called showstory() that take in the value of this (the id of the div) and changes the display to block.
e.g.:
Code:
function showstory(id){
document.getElementById(id+"b").style.display = "block";
}
And you'll need a function to do the opposite. display = "none" onmouseout
Bookmarks