		$(document).ready(function() {

			$('.flags img').animate({opacity:0.6});
			$('.flags img').hover(function () {
				$(this).stop().animate({opacity:1});
			}, function () {
				$(this).stop().animate({opacity:0.6});
			});		
    });
