jQuery.noConflict(); jQuery(document).ready(function() { //Start main menu slideDown on hover function meinMenuResize(){ var widthWindow = jQuery(window).width(); if (widthWindow <= 350) { jQuery('#prime li').hover(function() { jQuery('>ul', this).stop().show(); }, function() { jQuery('>ul', this).stop().show(); }); } else{ jQuery('#prime li ul').hide() jQuery('#prime li').hover(function() { jQuery('>ul', this).stop().slideDown(600); }, function() { jQuery('>ul', this).stop().slideUp(300); }); }; }; meinMenuResize(); //End animation effects });