$(function() {
    $('.menu li').hover(function() {
        $(this).find('img').attr('src', $(this).find('img').attr('src').replace('off.png', 'on.png'));
    }, function() {
        if (! $(this).hasClass('active'))
            $(this).find('img').attr('src', $(this).find('img').attr('src').replace('on.png', 'off.png'));
    });
    $("a[rel^='prettyPhoto']").prettyPhoto({animationSpeed:'slow',theme:'facebook'});
});

