$(document).ready(function() {
	$(".imgfocus").hover(function(){
		$(this).css('opacity', 0.55);
	}, function() {
		$(this).css('opacity', 1);
	});
});
