$(document).ready(function() {
	
	//check for menu and add click event if found
	if ($(".sub")) {
		$(".sub").each(function(i){
				if ($("~ ul", this).is(":hidden")) {
					$("~ ul", this).slideDown("slow");
				}
			});
		});
	}	
	
 });