$(document).ready(activatedrops=function(){	$('.block-bottom span.parent').click(function(){		$(this).parent().siblings().children('ul').hide("slow").end().children('span.parent').removeClass("open");		if($(this).hasClass('open')){			$(this).removeClass('open').parent().children('ul').hide("slow");		}else{			$(this).addClass('open').parent().children('ul').show("slow");		}	})})
