
/**
 * Funkce pro posouvani videa na uvodni strance
 */
$(document).ready(function() {
    // 1) tabs init
    $("#homepage_tabs").tabs();

    init_coverage();
});

function init_coverage() {
    $("#homepage_focus a").mouseenter(function() {
        var img = $(this).children(":first");
        var src = img.attr("src");        
        img.attr('src', $(this).attr('rel'));
        $(this).attr('rel', src);
	}).mouseleave(function() {
        var img = $(this).children(":first");
        var src = img.attr("src");
        img.attr('src', $(this).attr('rel'));
        $(this).attr('rel', src);
	});
    $("#homepage_focus a:last").addClass('last');
}

