$(function() {
	var $ui = $('#ui_element');
	
	$ui.find('.sb_input').bind('focus click',function(){
		$ui.find('.sb_dropdown')
		   .show("slow");
	});
	
	$ui.bind('mouseleave',function(){
		$ui.find('.sb_dropdown')
		   .hide("fast");
	});
	
	$ui.find('.sb_dropdown').find('label[for="tudo"]').prev().bind('click',function(){
		$(this).parent().siblings().find(':checkbox').attr('checked',this.checked).attr('disabled',this.checked);
	});
});
