jQuery(document).ready(function(){
	jQuery(this).find(".fiche, .hover_dark").hide();
	
	jQuery(".artiste_sprite").hover(function(){
		jQuery(this).find(".fiche, .hover_dark").stop(true, true).fadeIn('normal', function(){ if (window.navigator.appName == 'Microsoft Internet Explorer') { this.style.removeAttribute('filter'); } } );
	}, function(){
		jQuery(this).find(".fiche, .hover_dark").stop(true, true).fadeOut('normal', function(){ if (window.navigator.appName == 'Microsoft Internet Explorer') { this.style.removeAttribute('filter'); } } );
	});
	
	
	jQuery(".group_name a").hover(function(){
		jQuery(this).parent().parent().find('li').find(".fiche, .hover_dark").stop(true, true).fadeIn('normal');
	}, function(){
		jQuery(this).parent().parent().find('li').find(".fiche, .hover_dark").stop(true, true).fadeOut('normal');
	});
	
});	

