﻿$(document).ready(function() {
    if (jQuery.browser.safari || jQuery.browser.mozilla || jQuery.browser.opera) {
        $("#topnav").css("left", screen.width / 2 -310 + "px");
    }

    if (jQuery.browser.msie) {
        $("#topnav").css("left", screen.width / 2 - 450 + "px");
    }
});