$(document).ready(function(){
	$('.clubs_dep').css({height:"90px"}).find('ul').show();
	$('.clubs_link').toggle(function(e){
		e.preventDefault();
		if($(this).parent('.clubs').hasClass('clubs_dep')){
			$(this).parent('.clubs').css({height:"18px"});
			$(this).parent('.clubs').find('ul').hide();
		}else{
			$(this).parent('.clubs').css({height:"90px"});
			$(this).parent('.clubs').find('ul').show();
		}
	},function(e){
		e.preventDefault();
		if($(this).parent('.clubs').hasClass('clubs_dep')){
			$(this).parent('.clubs').css({height:"90px"});
			$(this).parent('.clubs').find('ul').show();
		}else{
			$(this).parent('.clubs').css({height:"18px"});
			$(this).parent('.clubs').find('ul').hide();
		}
	});
});
