$(document).ready(function(){
							$('img').css('opacity', 0.65);
							$('img').hover(function() {
							$(this).animate({
							opacity : 1
							}, 100);
							},
							function(){
							$(this).animate({
							opacity : 0.65
							}, 100);
							});

						   
						   });
