// JavaScript Document

function adjustStyle(width) {
    width = parseInt(width);
    if (width < 1000) {
        $("#size-stylesheet").attr("href", "http://arche-alstertal.de/wp-content/themes/SDG/css/promobox0.css");
    } else if ((width >= 1000) && (width < 1160)) {
        $("#size-stylesheet").attr("href", "http://arche-alstertal.de/wp-content/themes/SDG/css/promobox1.css");	
    } else if ((width >= 1160) && (width < 1370)) {
        $("#size-stylesheet").attr("href", "http://arche-alstertal.de/wp-content/themes/SDG/css/promobox2.css");	
    } else {
       $("#size-stylesheet").attr("href", "http://arche-alstertal.de/wp-content/themes/SDG/css/promobox3.css");
    }
}

$(function() {
    adjustStyle($(this).width());
    $(window).resize(function() {
        adjustStyle($(this).width());
    });
});
