(function ($) { // Original JavaScript code. goes here to use the $ as jQueary w/ Drupal $(document).ready(function(){ //alert('Hello world its me! document.ready.function'); // add rollover handlers //$('.field-collection-item-field-card').click(toggleFrontBack); // on main menu $('#main-menu').mouseover(onfirstRollverScroll); // on video window $('#block-block-10').mouseover(onfirstRollverScroll); }); function onfirstRollverScroll() { //alert("onfirstRollverScroll()"); // scroll to pos $('body').animate({ scrollTop: $("#main-menu").offset().top }, 1000); // remove scroll handlers $('#main-menu').unbind(); $('#block-block-10').unbind(); } })(jQuery);