$(document).ready (function () {
	$( ".menu li a" ).click(function() {
		var elem = $(this).parent().find(">ul");

		if( elem.length > 0 ) {
			elem.toggle("slow");
			return false;
		}
	});
	
	$('a.gallery').lightBox();
});