﻿$(document).ready(function () {
    $(".album").change(function () {
        if ($(".album option:selected").text().indexOf("all") !== -1) {
            window.location.href = "/photos/";
        }
        else {
            window.location.href = "/photos/" + $(this).val() + "/" + $(".album option:selected").text();
        }

    });

    $(".menu a").each(function () {
        $(this).removeClass("active");
        var currentUrl = window.location.pathname;
        if (currentUrl.indexOf($(this).attr("href")) != -1) {
            $(this).addClass("active");
        }
    });

});
