// <![CDATA[
	$(document).ready(function() {
    // odkazy
    var opacity = 0.5;
    var duration = 300;
    // karty
    $(".product_card_label_trigger").mouseenter(function(){
      var id = ($(this).attr('id')).replace('product_card_label_', '');
      $("#product_card_subs_" + id).fadeTo(200, 0.8);
      //$("#product_card_img_" + id).fadeTo(200, 0);
      $("#product_card_perex_" + id).fadeTo(200, 0);
      $("#product_card_label_" + id).fadeTo(200, 0);
    });
    $(".product_card_inner_border").mouseleave(function(){
      var id = ($(this).attr('id')).replace('product_card_inner_border_', '');
      $("#product_card_subs_" + id).hide(100);
      //$("#product_card_img_" + id).fadeTo(200, 1);
      $("#product_card_perex_" + id).fadeTo(200, 1);
      $("#product_card_label_" + id).fadeTo(200, 1);
    });
    // rotator
    /*
    $(".subproduct_small_label").click(function(){
      var id = ($(this).attr('id')).replace('subproduct_small_label_', '');
      //alert(id);
      $(".subproduct_rotator_max").hide(0);
      $(".subproduct_rotator_min").show(0);
      $("#subproduct_rotator_min_" + id).hide(0);
      $("#subproduct_rotator_max_" + id).show(0);
      $("#subproduct_big_" + id).hide(0);
      $("#subproduct_big_" + id).show(500);
    });
    $(".subproduct_small_small_label").click(function(){
      var id = ($(this).attr('id')).replace('subproduct_small_small_label_', '');
      //alert(id);
      $(".subproduct_small_rotator_max").hide(0);
      $(".subproduct_small_rotator_min").show(0);
      $("#subproduct_small_rotator_min_" + id).hide(0);
      $("#subproduct_small_rotator_max_" + id).show(0);
      $("#subproduct_small_big_" + id).hide(0);
      $("#subproduct_small_big_" + id).show(500);
    });    
    */

	});
// ]]>

