﻿/// <reference path="jquery-1.3.2-vsdoc.js" />
$(function() {
    if ($.browser.msie) {
        FixDropDownsForIE();
    }
});

function FixDropDownsForIE() {
    var selects = $("select.selectbox");
    $(selects).focus(function() {
        window.dropdown_menu_hack != null ? window.dropdown_menu_hack(this) : 0;
    });

    $(selects).wrap("<div class='pri'></div>");
}

function FixDropDownForIE(el) {
    if ($.browser.msie) {
        $(el).focus(function() {
            window.dropdown_menu_hack != null ? window.dropdown_menu_hack(this) : 0;
        });
    }
}



