/* 
 * michal@bajer.net.pl
 * 2011-09-28
 */
$(function() {
    $(".hidden").hide();

    $("#thumbindex1").mouseover(function() {indexmouseover(1)});
    $("#thumbindex2").mouseover(function() {indexmouseover(2)});
    $("#thumbindex3").mouseover(function() {indexmouseover(3)});

    indexmouseover(1);
});

function indexmouseover(id){
    $("#obrazek").html($("#imageindex"+id).html());
}
