// Is this a version of IE? Checks the browser and adds classes to the body with version number

jQuery(document).ready(function(){
    var userAgent = navigator.userAgent.toLowerCase();
    
    if(jQuery.browser.msie){ 
        jQuery('body').addClass('ie');
        jQuery('body').addClass('ie' + jQuery.browser.version.substring(0,1));
    }
});
