var clip = null;

function $(id) { return document.getElementById(id); }

function init(data) {

  clip = new ZeroClipboard.Client();
  clip.setHandCursor( true );

  my_mouse_over(clip, data);

  clip.glue( 'd_clip_button_' + data );
}

function my_mouse_over(clip, data) {
  // we can cheat a little here -- update the text on mouse over
  clip.setText( $('fe_text_' + data).value );

}

