$(function () {


    $(".dropdown dd").hover(function () {
        $(this).addClass("over");
    },
    function () {
        $(this).removeClass("over");
    });


    $('img[hvr]').hover(function () {
        var currentImg = $(this).attr('src');
        $(this).attr('src', $(this).attr('hvr'));
        $(this).attr('hvr', currentImg);
    }, function () {
        var currentImg = $(this).attr('src');
        $(this).attr('src', $(this).attr('hvr'));
        $(this).attr('hvr', currentImg);
    });

});
