//FADING IMAGE ON MOUSE HOVER
$(function () {
	$('#class_wrap img').hover(function() {
		$(this).fadeTo("fast", 0.8);
	}, function() {
		$(this).fadeTo("fast", 1.0);
	});
	$('#launch_wrap img').hover(function() {
		$(this).fadeTo("fast", 0.8);
	}, function() {
		$(this).fadeTo("fast", 1.0);
	});
});



