$(document).ready(function() {

	// Enable inline playing of tracks
	$.playable('swf/');
	$('a.playable').playable('swf/', {});

	// Playlists view logic
	$('a.playlist-toggle').click(function() {
		$($(this).attr('href')).toggle('slow');
		return false;
	});	
});
