$(document).ready(function(){
	$('.opac').css("opacity", 0.7);
	$('.opac').hover(
		function(){
			$(this).animate({
				opacity: 1
			}, 700);
		},
		function(){
			$(this).animate({
				opacity: 0.7
			}, 1000);
		}
	)
});