$(document).ready(function() {
	$('.fadeThis,.fadeThis1,.fadeThis2,.fadeThis3,.fadeThis4,.fadeThis5,.fadeThis6,.fadeThis7').append('<span class="hover"></span>').each(function () {
	  var $span = $('> span.hover', this).css('opacity', 0);
	  $(this).hover(function () {
	    $span.stop().fadeTo(150, 1);
	  }, function () {
	    $span.stop().fadeTo(500, 0);
	  });
	});
});
function musicPlayer(){
	window.open("music.html","SlimVoid","location=1,status=1,scrollbars=1,width=450,height=300");
}

