$(document).ready(function(){
	$(".yla4 img").css("opacity",0.8);
	// hovers
	$(".yla4 img").hover(
		function(){
			$(this).animate({opacity: 1.0}, "normal");
		},
		function(){
			$(this).animate({opacity: 0.8}, "normal");
		}
	);

});
