var _center_width = location.pathname.indexOf('/nyheter/') > -1 ? 1680 : 1400;

// om liten skärm kör med vänsterjustering
if ($(window).width() < _center_width)
    document.write("<style type=\"text/css\"> body form > div { margin-left:0; } </style>");

// ändra centrering
$(window).resize(function() {
    if ($(this).width() >= _center_width)
        $("body form > div").css({ "margin-left": "auto", "margin-right": "auto" });
    else
        $("body form > div").css({ "margin-left": "0", "margin-right": "auto" });
});

