// JavaScript Document
function welcome(code) {
	document.getElementById('code_form').code.value = code;
	document.getElementById('code_form').submit()
}

$(document).ready(function(){
  try {
    $('input.hint').ztInputHint({
      sourceAttrib: 'title',
      hintClass: 'ui-hint'}
    );
  } catch(err) {
    //alert(err);
  }
});
