jQuery.noConflict();

jQuery(document).ready(function($) {
	jQuery('.fce_music .legend .frontcoverlink').click(function(){
		jQuery('.fce_music .cover .backcover').fadeOut('slow',
		function(){
			jQuery('.fce_music .cover .frontcover').fadeIn('slow');
		});
		return false;
	});

	jQuery('.fce_music .legend .backcoverlink').click(function(){
		jQuery('.fce_music .cover .frontcover').fadeOut('slow',
		function(){
			jQuery('.fce_music .cover .backcover').fadeIn('slow');
		});
		return false;
	});
});
