jQuery(function($) {
	$('#s1 div.box')
		.hover(function() {
    		$(this).stop(true, true).animate({
				opacity: .5
			}, {
				duration: 200
			})
			},function() {
				$(this).stop(true, true).animate({
				opacity: 1
			}, {
				duration: 200
			})
		});
});
