/**
 * jQuery file to parse out links on the page
 * @author      Greg Tammi <greg@pictographics.com>
 * @copyright   Copyright (c) 2009+ Pictographics Ltd
 * @since       January 23, 2009
 */

$(document).ready(function() {
  /*$("#content a").each(function() {
    var href = this.href ;
    if (href.indexOf("/docs/") > -1) {
      // found docs ... make sure not a pdf or doc file
      if (href.indexOf(".pdf") == -1 && href.indexOf(".doc") == -1) {
        this.href = "/openFile.php?file=" + href ;
      } else {
        return true ;
      }
    } else {
      return true ;
    }
  });
  */
  $("div#elistSignup").corner({
    tl: { radius: 7 },
    tr: { radius: 7 },
    bl: { radius: 7 },
    br: { radius: 7 },
    antiAlias: false,
    autoPad: false
  }) ;

});