(function ($) {
    $(document).ready(function () {
        $.single=function(a){return function(b){a[0]=b;return a}}($([1]));
        /*@cc_on
            if (!window.XMLHttpRequest) {
                $('.hoverable').each(function () {
                    this.attachEvent('onmouseenter', function (evt) { $.single(evt.srcElement).addClass('hovered'); });
                    this.attachEvent('onmouseleave', function (evt) { $.single(evt.srcElement).removeClass('hovered'); });
                });
            }
        @*/
    });
}(jQuery));

