$(document).ready(function() {

   $('.homeBox').css( { 'opacity' : 0.75 } );

	$('.homeBox').mouseover(function() {
		$(this).animate({
			'opacity' : 1
		}, 100);
	});

	$('.homeBox').mouseleave(function() {
		$(this).animate({
			'opacity' : 0.75
		}, 100);
	});

});