﻿$(document).ready(function() {
    hideAll();
    showStudy();

    $.each($('#sList a'), function() {
        $(this).hover(function() {
            hideAll();
            hideCurrent();
            $(this).addClass("current");
            showStudy();
        }, function() {
            hideCurrent();
        });
    });
});

function hideAll() {
    for (i = 1; i <= 10; i++) {
        $('#study' + i).hide();
    }
}

function showStudy() {
    for (i = 1; i <= 10; i++) {
        if ($('#s' + i).hasClass("current")) {
            $('#study' + i).show();
        }
    }
}

function hideCurrent() {
    for (i = 1; i <= 10; i++) {
        if ($('#s' + i).hasClass("current")) {
            $('#s' + i).removeClass("current");
        }
    }
}
