$(document).ready(function(){
	 $("img.joni").hover(
	 	function () {
	 		$(this).animate({
	 			opacity: 0.1 
	 		});
	 	},
	 	function () {
	 		$(this).animate({
	 			opacity: 1.0 
	 		});
	 	}
	 );
});