Found the culprit. I was wrapping my code in $(window).resize function to detect the screen size to show the menu if the screen size is over 480px. This seems to have fixed my issue. I took it out of the resize.
Below is my original code. Don't use it. It is for what NOT to do. If anyone has an idea on how to fix it maybe that would help but this seems to not work. Seems like it causes a conflict between my auto scrolling Flex slider or any other animated sliders.
//Menu show hide
$(window).load(function(){
var $window = $(window);
var $topNav = $('#mainNavTop');
var $utilContent = $('#utilityContent');
function checkWidth() {
var windowsize = $window.width();
if(windowsize < 480){
$('#mainNavTop,#utilityContent').css('display','none');
$('.mobileNavIcon').click(function(event){
event.preventDefault();
$topNav.toggle();
$(this).toggleClass('active');
});
$('.mobileSearchIcon').click(function(event){
event.preventDefault();
$utilContent.toggle();
$(this).toggleClass('active');
});
}
else{
$('#mainNavTop,#utilityContent').css('display','block');
}
}
// Execute on load
checkWidth();
// Bind event listener
$(window).resize(checkWidth);
});