$(document).ready(function () {
    function HoverOver() { $(this).addClass('hover'); }
    function HoverOut() { $(this).removeClass('hover'); }
    var config = {
        sensitivity: 2,
        interval: 200,
        over: HoverOver,
        timeout: 500,
        out: HoverOut
    };
//    $("#dnnMenu .topLevel > li.haschild").hoverIntent(config);
    $(".subLevel li.haschild").hover(HoverOver, HoverOut);
    
	$('.ie7 #NavBox .topLevel').css('width',function(){	
		var newWidth = 0;
		$('li.root.item',this).each(function(index) {
			newWidth += $(this).outerWidth() + 1;
		});
		return newWidth;
	});
});
