I have found and tinkered with a good way to create a text to image rollover, here: http://jsfiddle.net/pkZAW/12/
$( function() {
$("#imglink").hover(
function () {
$(this).attr('small',$(this).html());
$(this).html($(this).attr('full'));
},
function () {
$(this).html($(this).attr('small'));
}
);
});
However, I need the transitions in and out to be faded, as it is on the thumbnail images here: http://lydiafraserward.co.uk/index.php?page=producing
After much searching around, I've not been able to add this transition to the script :-? .. any ideas..?