var myrules = {
  '.js_print' : function(el){
    el.onclick = function(){
      print();
    }
  }
};

Behaviour.register(myrules);

