/**
 * Скрипт, который меняет картинку с классом highlight при наведении мыши.
 * Date: 15.04.2009
 * @author politov@gmail.com
 */
$(document).ready(function(){
    $('img.highlight').hover(function() {
        var src = $(this).attr('src');
        $(this).data('oldSrc', src);
        if (!/\/images\/but_\ds\.gif/.test(src)) {
            $(this).attr('src', $(this).attr('longdesc'));
        }
    }, function() {
        $(this).attr('src', $(this).data('oldSrc'));
    });
});