$(document) .ready(function() {
	$('.trackList').hide();
	$('.trackListLink').addClass('pointer');
	$('.trackListLink').click(function(){
		$(this).parent().next().toggle("slide");
	});
	$('dd.cue').append($("<span class='what-it-is'>&nbsp;(<a class='padLink'>What's This?<span class='isthis'>The .cue file allows you to burn the mp3 to CD and have it insert track markers for the appropriate time.  You will need to download both the .cue file and the mp3 then make sure your cd burning software supports .cue files.  Examples of software that does: Nero, CDR-Win, Alcohol 120%, Toast and others.</span></a>)</span>"));
	$('.what-it-is').addClass('pointer');
	$('.what-it-is a').hover(
		function() {
			$(this).children('.isthis').slideDown({queue: false, duration: 300});
		}, 
		function() {
			$(this).children('.isthis').fadeOut(300);
		});
	
	
});
