function adjustStyle(width) {
    width = parseInt(width);
    if (width < 1025) {
        $("#size-stylesheet").attr("href", "http://pandoradebalthazar.com/wp-content/themes/pandora/1024.css");
    } else if ((width >= 1025) && (width < 1281)) {
        $("#size-stylesheet").attr("href", "http://pandoradebalthazar.com/wp-content/themes/pandora/1280.css");
    } else if ((width >= 1281) && (width < 1367)) {
        $("#size-stylesheet").attr("href", "http://pandoradebalthazar.com/wp-content/themes/pandora/1368.css");
    } else if ((width >= 1367) && (width < 1441)) {
        $("#size-stylesheet").attr("href", "http://pandoradebalthazar.com/wp-content/themes/pandora/1440.css");
    } else if ((width >= 1441) && (width < 1679)) {
        $("#size-stylesheet").attr("href", "http://pandoradebalthazar.com/wp-content/themes/pandora/1680.css");
    } else {
       $("#size-stylesheet").attr("href", "http://pandoradebalthazar.com/wp-content/themes/pandora/1600.css"); 
    }
}

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