$(document).ready(function() {

  //For movie statistics
  $('a.slideTrigger').click(function() {
    var id = $(this).attr('id');
    $('#slideContainer' + id).slideToggle("slow");
  });

  //For fancyzoom
  //$('a.fancyzoom').fancyZoom();

  //For fancybox
  $("a.fancybox").fancybox({
    'zoomSpeedIn':	600,
    'zoomSpeedOut': 	500,
    'easingIn':	'easeOutBack',
    'easingOut':	'easeInBack',
    'overlayShow':	false
  });

  //for donate button
  $("a#donate").bind("click", function() {
    $("#paypalform").submit();
  });

  //Scroll to top nicely
  $('a[href=#top]').click(function() {
    $('html, body').animate({scrollTop:0}, 'slow');
    return false;
  });

  //tablesorter for toilet paper
  $(document).ready(function() {
    $("#toilet-data").tablesorter(); 
  });

  //For silky smooth marquee - http://remysharp.com/2008/09/10/the-silky-smooth-marquee/
  //$('marquee').marquee();
 
}); 