$(document).ready(function(){

  /*
   * Takes care of display of product details
   */
  $('.popisky').css("display", "none");

  $('.showmore > a').click(function() {
    $(this).next(":visible").slideUp("slow");
    $(this).next(":hidden").slideDown("slow");
    return false;
  });

  /*
   * Takes care of Suckerfish menu
   */
  $('#topmenu li').hover(
    function() {
        $(this).addClass('sfhover');
    },
    function() {
        $(this).removeClass('sfhover');
    }
  );
});
