﻿function adjustStyle(width) {
    width = parseInt(width);
    if (width < 1180) {
        $("#size-stylesheet").attr("href", "/styles/css/styles_1024.css");
        $("#gallery-stylesheet").attr("href", "/styles/css/gallery_1024.css");
        showImages(4);       
    } else if ((width > 1179) && (width < 1450)) {
        $("#size-stylesheet").attr("href", "/styles/css/styles_1280.css");
        $("#gallery-stylesheet").attr("href", "/styles/css/gallery_1280.css");
        showImages(6);        
    } else if ((width > 1449) && (width < 1600)) {
        $("#size-stylesheet").attr("href", "/styles/css/styles_1440.css");
        $("#gallery-stylesheet").attr("href", "/styles/css/gallery_1440.css");        
    } else {
        $("#size-stylesheet").attr("href", "/styles/css/styles_1600.css");
        $("#gallery-stylesheet").attr("href", "/styles/css/gallery_1600.css");
    }
}

$(function () {
    adjustStyle($(window).width());
    $(window).resize(function () {
        adjustStyle($(window).width());
    });
});

function showImages(quantity) {

    var qty = quantity;
    $(".hoverbox a").slice(qty).css("display", "none");
}
