jQuery().ready(function() {  

	jQuery('#Menu').show();

	jQuery('.mediaDescLink').each(function(){
		jQuery(this).hover(
			function(){
				jQuery(this).prevAll().fadeIn('slow');
			},
			function(){
				jQuery(this).prevAll().fadeOut('slow');
			});
	});

	jQuery('.formatMP3').each(function(){
		jQuery(this).toggle(
			function(){
				jQuery(this).prevAll('.mediaRow-Audio').show();
			},
			function(){
				jQuery(this).prevAll('.mediaRow-Audio').hide();
			});
	});

	jQuery('.formatMP3Full').each(function(){
		jQuery(this).toggle(
			function(){
				jQuery(this).prevAll('.mediaRow-AudioFull').show();
			},
			function(){
				jQuery(this).prevAll('.mediaRow-AudioFull').hide();
			});
	});

}); 

