(function($){  
 $.simpledropdown = function(selector) {
	 
		$(selector).children("ul").addClass("dropdown");
		$("ul.dropdown>li").not(".dropdown>li:first-child").addClass("drop");		

		$("ul.dropdown").click(function() {
			var subitems = $(this).find(".drop ul li");
			$('div.notdropped').toggleClass('dropped')	
			subitems.slideToggle("fast", function() {
			subitems.click(function() {
				var selection = $(this).text();
			});
		});
	});
 };  
})(jQuery); 

