$(document).ready(function() {
    /*  Linking to external websites */
    $("a[@rel='external']").addClass("external")
       .click(function() { window.open($(this).attr("href")); return false; });

    /*  Making a form element focus */
    $("input.focus").eq(0).focus();
    
    $(".SearchPage input[@type='checkbox']").click(
        function(){
            if ($(this).is(":checked"))
            {
                $(this).parents("div.search_gender_item").find("img").css("opacity", 1);
            }
            else
            {
                $(this).parents("div.search_gender_item").find("img").css("opacity", 0.4);
            }
        }
    );
    
    $(".SearchPage input[@type='checkbox']").each( 
        function () {
            if ($(this).is(":checked"))
            {
                $(this).parents("div.search_gender_item").find("img").css("opacity", 1);
            }
            else
            {
                $(this).parents("div.search_gender_item").find("img").css("opacity", 0.4);
            }
        }
    );
});
