/***********************************
 *   INDEX-PUOLEN JAVASCRIPTIT
 ***********************************/

$(document).ready(function(){
    $("img[id*='success']").each( function (i) {
        $(this).hide();
    } );
    $("img[id*='error']").each( function (i) {
        //$(this).hide();
    } );
    $("img[id*='loading']").each( function (i) {
        $(this).hide();
    } );
});


function checkSpamFilter() {
    if (($('#cb1').is(':checked')) == true && $('#cb2').is(':checked') == false) {
        $('#error').hide();
        $('#success').show(); 
    }
    else {
        $('#success').hide();
        $('#error').show();
    }
}
