﻿// alert('Start of animated-menu.js');

jQuery.noConflict();    // avoids conflict with MooTools since that library also uses "$" as operator. 
jQuery(document).ready(function() {

jQuery("#ulMainMenu li.MenuItem").mouseover(function() {
        jQuery(this).stop().animate({ height: '330px' }, { queue: false, duration: 600, easing: 'easeOutBounce' })
    });

    jQuery("#ulMainMenu li.MenuItem").mouseout(function() {
        jQuery(this).stop().animate({ height: '118px' }, { queue: false, duration: 600, easing: 'easeOutBounce' })
    });

});
// alert('End of animated-menu.js');
