(function($){
	$.fn.switcher = function() {
		$(this).bind('click', function() {
			$(this).find('.option').slideToggle('fast');
		});
		
		$(this).bind('mouseleave', function() {
			$(this).find('.option').slideUp('fast');
		}); 
	};
	
})(jQuery);

$(document).ready(function(){
	$('.switcher').switcher();
});
