jQuery(document).ready(function() {
	jQuery(".discImage a img , .bioImgBox a img").fadeTo(0,1.0)
	.hover( 
		function(){
			jQuery(this).fadeTo(200, 0.5);
		},
		function(){
			jQuery(this).fadeTo(500, 1.0);
		}
	);

});

