$().ready(function() 
{
    // Dropdown
	$('.dropdown .dropdown_header').click(function(e)
    {
        $('.dropdown ul').not($(e.target).parents('.dropdown').children('ul')).hide();
        var dropdown = $(this).parents( '.dropdown' );
		$('ul', dropdown).toggle();
	});
	
	$('.dropdown li').click( function() 
    {
        var text = $(this).html();
        var dropdown = $(this).parents( '.dropdown' );
        $('.dropdown_label', dropdown).html(text);
        $('ul', dropdown).hide();
    });

	$(document).bind('click', function(e) 
    {
		var $clicked = $(e.target);
		if (! $clicked.parents().hasClass('dropdown'))
        {
            $('.dropdown ul').hide();
        }
	});
});