function ConditionalCss()
{

}

function addStyleSheetToHeader(pathToStyleSheet)
{
    var linkElement = document.createElement("link");
    var head = document.getElementsByTagName("head")[0];

    linkElement.type = "text/css";
    linkElement.href = pathToStyleSheet;
    linkElement.rel = "stylesheet";
    linkElement.media = "screen";

    head.appendChild(linkElement);    
}

ConditionalCss.prototype.AddCss = function() {
    var browser = $.browser.msie;
    var browserVersion = $.browser.version;

    if ($.browser.msie) {
        addStyleSheetToHeader('../../Content/css/ie.css');
    }
}