$(function(){
  
    $(".colorbox").live("click", function(){
        $(this).colorbox({
            maxHeight:"98%",
            open:true
        });
        return false;
    });
    
  $(".online button").click(function(){

    $(".kell").css("border","1px solid silver");
    var ok = true;
    $(".online .kell").each(function(){
        if($(this).val()=='')
        {
            $(this).css("border","1px dashed red");
            ok=false;
        }
    }
    );
    return ok;
    });
     
});
