jQuery(function($){
	
	var expandable = $('.expandable');
	
	expandable.bind('mouseenter mouseleave', function(){
		$(this).toggleClass('hover');
	}).bind('click', function(){
		$(this).children('ul').toggle().end().toggleClass('closed').toggleClass('open');
	});
});

