
/**
 * Funkce pro posouvani videa na uvodni strance
 */
$(function() {
    init_homepage_showcase();
    init_blackboard_links();
});

function init_homepage_showcase() {
    var showcase = $("#homepage_showcase");
    if (showcase.length != 1) {
        return ;
    }
    var tabs = showcase.find(".tab");
    var labels = showcase.find(".tab>a.label");
        
    showcase.find(".tab").each(function(i) {
        $(this).find('a.label').attr('href', $(this).find('a.more').attr('href'));
    });
    
    labels.mouseenter(function () {
        $(this).parent('.tab').addClass($(this).attr('rel') + "_hover");
        $(this).parent('.tab').find('.panel').show();
    })
    tabs.mouseleave(function() {
        $(this).removeClass($(this).find('a.label').attr('rel') + "_hover");
        $(this).find('.panel').hide();
    });
}

function init_blackboard_links() {
    var blackboard = $("#homepage_blackboard");

    blackboard.find('.item').each(function (i){
       $(this).find('.title_link').attr('href',$(this).find('a.button').attr('href')); 
    });
}
