$(document).ready(function() {
    $(".dropdown").click(function() {
        $(this).parent().siblings().find('a.dropdown').next().slideUp('fast');
    		$(this).next().toggle('fast');
    		return false;
    	});
  });
