$(document).ready(function(){
    $("a:has('span.obr')").colorbox();
    $("a span.obr").append('<span class="zoom"></span>');
    
    $(".cforms").each(function() {
	inputlength = $(this).val().length;
	if(inputlength !== 0) {
	    $(this).addClass("jqforms");
	}
    });
    
    $(".cforms").click(function() {
	$(this).addClass("jqforms");
    });
    
    $(".cforms").blur(function() {
	inputlength = $(this).val().length;
	if(inputlength === 0) {
	    $(this).removeClass("jqforms");
	}
    });
    
});
