//definice akci pro obrazek
function defineItemEvents(enable) {
    if (enable) {
	$(".obrazek").jqueryzoom({
		xzoom: 300,
		yzoom: 300,
		offset: 10,
		position: "right",
		preload:1,
		lens:1,
		style_width:"50%"
	});
    }

	// fix pro skryti vertikalniho scrollbaru v IE pri preteceni tabulky fotogalerie
	$('#fotogalerie').fixOverflow();
}

// funkce pro ie overflow scrollbar fix
(function ($) {
  $.fn.fixOverflow = function () {
    if ($.browser.msie) {
      return this.each(function () {
        if (this.scrollWidth > this.offsetWidth) {
          $(this).css({ 'padding-bottom' : '20px', 'overflow-y' : 'hidden' });
        }
      });
    } else {
      return this;
    }
  };
})(jQuery);
