﻿$(document).ready(function() {

    $("#multi-range a").click(function() {
        var liArray = $(".range li");
        var selectedRange = this.href.substr(this.href.lastIndexOf("/") + 2);
        var setAsRed = false;
        $.each(liArray, function() {
            if (this.id == selectedRange) setAsRed = true;
            if ((this.id != selectedRange) && (this.id.length > 0)) setAsRed = false;
            if (setAsRed) {
                $("a", this).attr("style", "color: red");
            } else {
                $("a", this).attr("style", "");
            }
        });

    });

});
