$(document).ready(function() {

  // Footer
  $('#totop').before('<a href=\"javascript:window.print();\" title="diese Seite drucken">Seite drucken</a> | ');
  
  /* Slideshow */
  $('.slideshow').cycle({ fx: 'fade', speed: 1000, timeout: 3000, next: '.slideshow', pause: 1 });
  
  /* Produkte */
  $('.products .products-item-form .type-check input[@checked=]').parent().parent().children('.f_amount').css('display','none');
  $('.products .products-item-form .type-check input').click( function() { if($(this).is(':checked')) { $(this).parent().parent().children('.f_amount').css('display','inline'); } else { $(this).parent().parent().children('.f_amount').css('display','none'); } });
  
  /* Fancy-Box */
  $('.float-right a[@href$=.jpg]').fancybox();
  
});
