$(document).ready(function(){

	$(".imgSC").hover(
		function () {
			$(this).fadeTo("fast", 1);
		}, 
		function () {
			$(this).fadeTo("fast", .75);
		}
	);
	
});
