$(document).ready(function(){
		
	// Clicks the image instead of the link for song playback
	//
	$('ul.song_list li a').click(function() {
		$(this).siblings().click();
		return false;
	});
	
	/* Superfluous effects --------------------------------------------------- */
	
	// Fade wordmark on hover
	//
	$('#wordmark a').hover(
		function() {
			$(this).fadeTo("normal", 0.8);
		},
		function() {
			$(this).fadeTo("normal", 1);
		}
	);
	
	// Slide album covers down on mouseover, up on mouseout
	// 
	$('#discography li').hover(
		function() {
			$(this).animate({ top: "0px" }, 300);
		}, 
		function() {
			$(this).animate({ top: "-32px" }, 300);
		}
	);

	
});
