//add controls to our document
$(function() { //same as document.ready()
	
	//process the artist list
	musicPlayer.process();
		
}); //end document.ready


//define functions for the music player
musicPlayer = {
	
	process: function() {
		$("div.artwork").hover(
			function(){
				//alert('neil was here');
				$(this).children("div.hover").fadeIn();
			},
			function() {
				$(this).children("div.hover").fadeOut('fast');
			}
		);
	}
}