$(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 //$("#toilet-data").tablesorter(); //For silky smooth marquee - http://remysharp.com/2008/09/10/the-silky-smooth-marquee/ //$('marquee').marquee(); $("a.contact").toggle( function () { $("#contact").animate({height: "225px"}, {queue:false, duration: 1700, easing: 'easeOutBounce'}) }, function () { $("#contact").animate({height: "0px"}, {queue:false, duration: 1700, easing: 'easeOutBounce'}) } ); $("a.navmenu-more-link").toggle( function () { $("#navmenu-more").animate({height: "130px"}, {queue:false, duration: 600, easing: 'swing'}); }, function () { $("#navmenu-more").animate({height: "0px"}, {queue:false, duration: 600, easing: 'swing'}); } ); });