﻿$("#flags img").css("opacity", 0.7);

$("#flags img").hover(
    function () {
        $(this).fadeTo("fast", 1);
    },
    function () {
        $(this).fadeTo("fast", 0.7);
    }
);
