$(document).ready(function(){ $('li.haschild').hover(function(){ $(this).children('ul').stop().slideDown(300); }, function(){ var timeout = $(this).children('ul'); setTimeout(function(){ $(timeout).stop().slideUp(300); }, 200); }); }); function includeHeader(root){ $.ajax({ url: root + 'js/inc_header.html', dataType: 'html', cache: false, async: false, success: function(header_html){ header_html = header_html.replace(/\{\$root\}/g, root); document.write(header_html); } }); }