$(document).delegate('.drop_down','click',function(){
	$(this).next().find('.drop_down:first').toggle();
});

$(document).delegate('.drop_down.sel_list li','click',function(){
	$(this).parent().css({top:Math.max(-$(this).parent().offset().top-15,$(this).parent().offset().top-$(this).offset().top-15)}).hide();
});
