/*jslint browser: true, sloppy: true, maxerr: 50, indent: 4 */
/*global $,jQuery */

$(document).ready(function () {
	var isSubmenuLink = false;

	$('li.item').click(function (evt) {
		if (isSubmenuLink) {
			return;
		}

		$('ul.dropdown').hide(300);

		// Check to make sure we have a submenu
		if ($('ul.dropdown', this).get().length) {
			$('ul.dropdown', this).show(400);

			// Only prevent the click from happening if we have a submenu
			evt.preventDefault();
		}
	});

	$('li.item ul.dropdown li a').click(function () {
		isSubmenuLink = true;
	});
});

