﻿$(document).ready(function () {
    IE4 = (navigator.appVersion.indexOf("MSIE 4.") == -1) ? false : true;
    IE5 = (navigator.appVersion.indexOf("MSIE 5.") == -1) ? false : true;
    IE6 = (navigator.appVersion.indexOf("MSIE 6.") == -1) ? false : true;
    IE7 = (navigator.appVersion.indexOf("MSIE 7.") == -1) ? false : true;

    if (IE4 || IE5 || IE6 || IE7) {
        $('#browserWarning').show();
        $('body').css('paddingTop', '35px');
        $('#head').css('top', '35px');
    }
});
