$(function(){
	$('.artist .artist_content').each(function(k,v){
		var h = $(v).height();
		$(v).css('height', h);
	});
	$('.artist .artist_content').hide();
	$('.artist').addClass('artist_dim');
	$('.artist').hover(
		function(){
			$(this).removeClass('artist_dim');
		},
		function(){
			$(this).addClass('artist_dim');
		}
	);
	$('.artist').click(function(){

		if($(this).hasClass('artist_open')){
			$('.artist .artist_content').slideUp('slow');
			$('.artist').removeClass('artist_open');
		} else {
			var id = $(this).attr('id');
			$('.artist .artist_content:not(#'+id+')').slideUp('slow');
			$('.artist').removeClass('artist_open');
			$(this).addClass('artist_open');
			$(this).children().children('.artist_content').slideToggle('slow');
		}
		
	});
		
	$('#artists_featuring .artists .artist:first-child').addClass('artist_open');
	$('#artists_featuring .artists .artist:first-child').children().children('.artist_content').slideToggle('slow');
	
});
