﻿
// Checks the browser and adds classes to the body to reflect it.

$(document).ready(function () {
//    var userAgent = navigator.userAgent.toLowerCase();
//    $.browser.chrome = /chrome/.test(navigator.userAgent.toLowerCase());

//    $('img.BrowserCheck').attr("src", "images/IE.jpg");

//    // Is this a version of IE?
//    if ($.browser.msie) {
//        $('img.BrowserCheck').attr("src", "images/IE.jpg");
//    }
//    // Is this a version of Chrome?
//    if ($.browser.chrome) {
//        $('img.BrowserCheck').attr("src", "images/chrome.jpg");
//        $.browser.safari = false;
//    }
//    // Is this a version of Safari?
//    if ($.browser.safari) {
//        $('img.BrowserCheck').attr("src", "images/safari.png");
//    }
//    // Is this a version of Mozilla?
//    if ($.browser.mozilla) {
//        $('img.BrowserCheck').attr("src", "images/firefox.png");
//    }
//    // Is this a version of Opera?
//    if ($.browser.opera) {
//        $('img.BrowserCheck').attr("src", "images/opera.gif");
//    }
});
