It depends on what your intent is. If you want to access the database when you mouse over the images you will need to use AJAX to return the data and then display it however you want.
Alternatively, if you are generating the links via some server side code, you could create a javascript function on your page that takes two values:
function displayImage(imgSrc, imgDescription)
{
//set img
//set description
}
then change your server side script so that your links would look like this:
onMouseover="displayImage('/MenS07.jpg', 'Some description')"
does that make sense?
================================================== =========
Read this if you want to know how to get a correct reply for your question:
http://www.catb.org/~esr/faqs/smart-questions.html
================================================== =========
.: Wrox Technical Editor / Author :.
Wrox Books 24 x 7
================================================== =========