Having the following:
$(\'#navMain .nav1\').hover(function () { $(this).addClass(\'hover\'); if ($.browser.msie && $.browser.version < 7)
If a simple javascript delay can help you, you can do as follow:
setTimeout(function() { // your code here }, 3000);
With the following signature: setTimout(functionToExecute, delayInMs);
and the documentation: http://www.w3schools.com/js/js_timing.asp
Hopping I help you.