﻿$(document).ready(function () {
	$(".vnav a").click(function() {
		if ($(this).next().is("ul"))
		{
			$(".vnav ul ul:visible").not($(this).next("ul")).slideUp();
				
			$(this).next("ul").slideToggle();
			return false;
		}
	}).next("ul").hide();
	$(".selected").parent("ul").show();
});