$(document).ready(function() {

  /*
  if($.browser.msie) {
    var i;
    for (i in document.images) {
        if (document.images[i].src) {
            var imgSrc = document.images[i].src;
            if (imgSrc.substr(imgSrc.length-4) === '.png' || imgSrc.substr(imgSrc.length-4) === '.PNG') {
                document.images[i].style.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled='true',sizingMethod='crop',src='" + imgSrc + "')";
            }
        }
    }
  }
  */

  $('#objekt_old').fadeOut(1000);
  $('#objekt_new').fadeIn(1000);


  if ( $.browser.msie ) {
    $("#main_menu li:has(ul)").children("ul").show();
  } else {
  
    $("#main_menu li:has(ul)").hover(function()
          {
     if (!$(this).children("ul").is(':animated'))
       	 {
         		$(this).children("ul").css("display", "none");
          	$(this).children("ul").slideDown("normal");
         }
          },
       function(event)
       {
          $(this).children("ul").slideUp("fast");
       });
  }

  $('.scroll-pane').jScrollPane({showArrows: true, autoReinitialise:true });
  
  $('#fotky table td a').lightBox();
  $('#clenove table td a').lightBox();
  $('#xko a').lightBox();
  
  $('#clenove .stinek').hover(
    function() { $(this).find('.prekryv, .prekryv_jmeno').show(); },
    function() { $(this).find('.prekryv, .prekryv_jmeno').hide(); }
  );
  
  $('.novinka-box a.cela').click(function(event) {
    event.preventDefault();
    $(this).parent().children('.novinka_obsah_kraceno').toggle();
    $(this).parent().children('.novinka_obsah_full').toggle();
    if($(this).html()=='Více') {
      $(this).html('Méně');
    } else {
      $(this).html('Více');
    }
  });
  
  $('#novinka_wrapper').corner();
  
});
