var o = jQuery.fn.banner = function(settings) 
{
  settings = jQuery.extend(
  {
    src: "banner.swf",
    xml: "banner.html",
    width: "960",
    height: "115",
    version: "6.0.0"
  }
  , settings);
  return this.each(
    function()
    {
      var el = this;
      var flashvars = {xmlfile: settings.xml};
      swfobject.embedSWF(settings.src, el.id, settings.width, settings.height, settings.version, null, flashvars);
    }
  );
};