jQuery(function() {
	jQuery('.jimage').css('opacity', 0.7).hover(
		function() {
			jQuery(this).fadeTo(250, 1);	
		},
		function() {
			jQuery(this).fadeTo(250, 0.7);
		}
	);
});
