﻿
//$(document).ready(function () {
//    $("select[id$='YearSelector']").change(function () {
//        hideAllTables($(this).val().split('_')[0]);
//        $('#' + $(this).val()).fadeIn('fast');
//    });
//    $("div[id*='qqq']").hide();
//});

//$(document).ready(function() {
//    $("td[class='valgemne'] ul").summarize({ summaryElements: 2, expandText: 'Se flere', collapseText: 'Se færre' });
//});

function hideAllTables(startsWith) {
    $("table[id^='" + startsWith + "_']").hide();
}

function showSC(sc, choiceName) {
    $("tr[id^='" + sc.split('_')[0] + "_']").hide();
    $("tr[id$='_" + sc.split('_')[0] + "']").hide();
    $("tr[id='" + sc.split('_')[0] + "']").hide();
    $("tr[id*='" + sc.split('_')[1] + "_']").fadeIn(1000);
    $("div[id*='qqq']").html("Du ser nå veivalget '" + choiceName + "'.  <a href='javascript:resetChoices()'>Gå tilbake</a>.");
    $("div[id*='qqq']").fadeIn(1000);
}

function resetChoices() {
    $("tr[class='hidden']").hide();
    $("tr[class!='hidden']").fadeIn('slow');
    $("div[id*='qqq']").hide();
    $("div[id*='qqq']").html("");
}
