﻿function Process() {
    $(".WidenedDropDown").mousedown(function() {
        if ($.browser.msie) {
            $(this).css("width", "auto").parent().css("border-right", $(this).css("border-style") + " " + $(this).css("border-width") + " " + $(this).css("border-color"));

            if ($(this).width() < $(this).parent().width()) {
                $(this).css("width", $(this).parent().css("width")).parent().css("border-right", "none");
            }
        }
    });
    $(".WidenedDropDown").change(function() {
        if ($.browser.msie) {
            $(this).css("width", $(this).parent().css("width")).parent().css("border-right", "none");
        }
    });
    $(".WidenedDropDown").blur(function() {
        if ($.browser.msie) {
            $(this).css("width", $(this).parent().css("width")).parent().css("border-right", "none");
        }
    });
}   
