/**
 * @file jquery.append_script.js
 *  JQuery Plugin to append scripts to the <head>.
 **/

/**
 * Script appender function.
 * 
 * @param source
 *  The javascript source.
 **/
$.fn.append_script = function(source) {
  var script = "<scr" + "ipt type='text/javascript' src='" + source;
  script += "'><\/scr" + "ipt>";

  $(this).append(script);

  return this;
}







