/* Target Blank */

$(function() {
			$(".external").attr("target","_blank");
		});
		
/* Collapsable Lyrics */

/* $(function() {
	$(".lyrics").hide();
	$(".collapse").click(function() {
    $(this).next(".lyrics").slideToggle(200);
	});
}); */

/* jScrollPane */

$(function()
{
	$('#content').jScrollPane();
});

/* Active Navigation State */

$(function() {  
        var path = document.location.protocol + "//" + window.location.hostname + window.location.pathname;  
        var url = window.location.href;  
        $("#access a[href='" + url + "'], #access a[href='" + path + "']").addClass('selected');  
}); 
