﻿$(document).ready(function () {

    if ($.browser.msie) {
        $(".dropdown dd").hover(function () {
            if ($.browser.version.substr(0, 1) < 7)
                $(this).addClass("over");
        },
        function () {
            if ($.browser.version.substr(0, 1) < 7)
                $(this).removeClass("over");
        });
    } 

    $("img[hvr]").each(function () {
        var hoverImg = $(this).attr("hvr");
        $("<img>").attr("src", hoverImg);
    });

    $("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);
    });

});