// Frontline Main Nav Dropdown Function
//
// Wirtten by Erik Teichmann
// www.erikteichmann.com
//
// Copyright 2012 Netwirks LLC.
// www.netwirks.com
//

$(function() {

	$("#FL-Navigation ul.menu ul").css({ display: 'none' });
	$("#FL-Navigation ul.menu li").hover(function() {
		$(this).find('ul.sub-menu')
			.stop(true, true).delay(50).animate({ "height": "show", "opacity": "show" }, 200 );
	}, function(){
		$(this).find('ul.sub-menu')
			.stop(true, true).delay(50).animate({ "height": "hide", "opacity": "hide" }, 200 );
	});

});

