jQuery(document).ready(function() {
//    jQuery("#imageShowcase img#productImg").hide();
//    jQuery("#imageShowcase img").hide();
//    jQuery("#productImgDefault").show();
    
    jQuery(".product-options #attribute522").change(function() {
    
        var rozsahVal = jQuery(".product-options #attribute522 :selected").text();
        if (rozsahVal == "Vyberte možnost...") rozsahVal = '';
        document.getElementById("rozsah").innerHTML = rozsahVal;
    });
    
    jQuery(".product-options #attribute523").change(function() {
        
        var noniusVal = jQuery(".product-options #attribute523 :selected").text();
        if (noniusVal == "Vyberte možnost...") noniusVal = '';
        document.getElementById("nonius").innerHTML = noniusVal;
    });
    
    jQuery(".product-options #attribute524").change(function() {
        
        var chybaVal = jQuery(".product-options #attribute524 :selected").text();
        if (chybaVal == "Vyberte možnost...") chybaVal = '';
        document.getElementById("mezni_chyba").innerHTML = chybaVal;
    });
});
