//global vars
var current_file;  // pointer to file, used to set active link on left navigation
var current_folder; // returns folder, used in determining current section title, nav link, section intro
var css_Browser;  //i only care if it's ie
var css_Platform; //i only care if it's windows
var css_displayToShow; // browser specific issue for making td's visible using display attribute
var sectionTitles =  new Array("Home", "About Us", "Portfolio", "Members", "Sponsors", "Resources", "For Angel Investors", "For Entrepreneurs");

//var sectionTitles =  new Array("Home", "About Us", "Portfolio", "Members", "Sponsors", "Resources", "For Angel Investors", "For Entrepreneurs");

var sectionFolders = new Array("",     "aboutus",  "portfolio", "members", "sponsors", "resources", "membership",          "entrepreneurs");
var currentSectionTitle;  // section title, set by switch
var currentSectionMainContent; // section intro, set by switch
var url_modifier = "../";  //builds links relative
var ln_titles; // array of page titles for section navigation
var ln_filenames; // array for filenames for section navigation
var currentPageTitle; // sets page title
var monthNames = new Array('January','February','March','April','May','June','July','August','September','October','November','December');
var dayNames = new Array('su','mo','tu','we','th','fr','sa');
var daysInMonth = new Array(31,28,31,30,31,30,31,31,30,31,30,31);
var eventDates = new Array();
var eventTitles = new Array();
var eventTimes = new Array();
var css_Flavor = "winter";
var majorColor //navbar, link colors
var minorColor //border
var noteColor //home notes background
//end global vars

var browser = navigator.appName;
var b_version = navigator.appVersion;
var version = parseFloat(b_version);
var platform = navigator.platform;
css_Browser = "";
css_Platform = "";

if (browser == "Microsoft Internet Explorer") { 
  css_Browser = "_ie";
  if (platform == "Win32") {
    css_Platform = "_win";
    css_displayToShow = "block";
  }
}
else {
  css_displayToShow = "table-cell";
}

current_Url = location.href;
lastSlash = current_Url.lastIndexOf("/");
current_folder = current_Url.substring(0,lastSlash);
current_file = current_Url.substring(lastSlash+1);
lastSlash = current_folder.lastIndexOf("/");
current_folder = current_folder.substring(lastSlash+1);

switch(current_folder) {
  case "aboutus":
    currentSectionTitle = "About Us";
    currentSectionMainContent = "New York Angels is an independent consortium of individual accredited angel investors. New York Angels' mission is to provide opportunities for its members to obtain outstanding financial returns by investing in early-stage technology and new media companies in the New York City area and accelerating them to market leadership. We provide seed and early-stage capital in the range of $250K-$750K, an investment range not generally served by venture capital funds. Since 1997, members of NYA and the NYNMA Angel Investors Program have invested over $20 million in over 65 ventures in local technology and new media companies.";
    ln_titles = new Array("Overview",        "History",      "Sector Focus Groups", "Press Releases", "Events");
    ln_filenames = new Array("default.html", "history.html", "groups.html",         "press.html",     "calendar.html");
    break
  case "portfolio":
    currentSectionTitle = "Portfolio";
    currentSectionMainContent = "Here is a selection of some of the companies that New York Angels has invested in.";
    /*ln_titles = new Array("Aerospace &amp; Defense", "Life Sciences",       "Media",        "Internet Services",      "Software &amp; Systems", "Networking &amp; Communications", "Financial Services",    "Business Services",      "Utilities");
    ln_filenames = new Array("default.html",       "life_sciences.html",  "media.html",   "internet_services.html", "software.html",          "networking.html",                 "financial_services.html", "business_services.html", "utilities.html");*/
    break
  case "members":
    currentSectionTitle = "Members";
    currentSectionMainContent = "New York Angels is an investment group of 61 members. Our members are entrepreneurs, CEO's, venture capitalists and business leaders who have funded and built world-class companies. We mentor and coach the entrepreneurs in whom we invest, serve on their boards, provide contacts and assist with team building, strategic planning and fundraising.";
    ln_titles = "";
    ln_filenames = "";
    getData_MemberPicker(current_file);
    break
  case "sponsors":
    currentSectionTitle = "Sponsors";
    currentSectionMainContent = "New York Angels is able to operate and provide the services it does to emerging companies through the contributions and efforts of our carefully selected and highly valued sponsors. From among the many excellent service organizations in New York, we have chosen one in each functional area to introduce to our current and prospective portfolio companies. Our sponsors have all agreed to offer special benefits and services to companies who apply for NYA funding, and we strongly encourage emerging companies to look into doing business with these highly reputable firms.";
    ln_titles = new Array("Overview",        "PriceWaterhouseCoopers", "Silicon Valley Bank", "Become a Sponsor");
    ln_filenames = new Array("default.html", "pwc.html",               "svb.html",            "sponsor.html");
    break
  case "resources":
    currentSectionTitle = "Resources";
    currentSectionMainContent = "Before submitting your business plan for our consideration, you must determine if angel capital - and specifically capital from our group - is right is for your company. Below are some resources to learn more about Angel Investing as well as tips that will help improve your chances of success. ";
    ln_titles = new Array("Presentation Tips",   "Links");
    ln_filenames = new Array("default.html", "links.html");
    break
  case "membership":
    currentSectionTitle = "For Angel Investors";
    currentSectionMainContent = "Membership in New York Angels is by invitation only, and is extended to individuals who share our vision and will actively contribute to our process. We are an investment group of peers, and seek as fellow members people known to us who have similar investment goals, activity levels and risk tolerances. ";
    ln_titles = new Array("Overview",        "Becoming an Angel", "SEC Regulations",  "FAQS",      "Inquire About Membership");
    ln_filenames = new Array("default.html", "becoming.html",     "regulations.html", "faqs.html", "apply.html");
    break
  case "entrepreneurs":
    currentSectionTitle = "For Entrepreneurs";
    currentSectionMainContent = "Angel investors provide billions of dollars of funds each year for early stage companies, in some years more than all venture capital firms combined. While there are many varieties of angels, the members of New York Angels are sophisticated, experienced, investors. Dealing with 'smart money' can often be a frustrating experience for entrepreneurs. To make the process as smooth and successful as possible for all of us, we recommend that you read <b>everything in this section</b> of our web site.";
    ln_titles =    new Array("Overview",     "Angel Investing 101", "Considering Valuation", "Funding Process", "Investment Criteria", "FAQS" ,     "Submit a Business Plan");
    ln_filenames = new Array("default.html", "angel101.html",       "valuation.html",        "funding.html",    "criteria.html",       "faqs.html", "http://www.angelsoft.net/apply/newyorkangels");
    break
  default:
    currentSectionTitle = "Home";
    currentSectionMainContent = "";
    url_modifier = "";
    ln_titles = "";
    ln_filenames = "";
}

for (j=0;j<ln_titles.length;j++) {
  if (ln_filenames[j] == current_file) {
    currentPageTitle = ln_titles[j];
    break
  }
}

function getData_MemberPicker(current_file) {
  switch(current_file) {
    case "angelo_abdela.html":
      bio_Name = "Angelo Abdela";
      bio_Img = "angelo_abdela";
      bio_SFG = "Board of Directors";
      bio_email = "";
    break
    
    case "mark_allison.html":
      bio_Name = "Mark Allison";
      bio_Img = "";
      bio_SFG = "";
      bio_email = "";
    break   
      
    case "andy_applebaum.html":
      bio_Name = "Andy Applebaum";
      bio_Img = "";
      bio_SFG = "";
      bio_email = "";
    break
    
    case "jeff_ballowe.html":
      bio_Name = "Jeff Ballowe";
      bio_Img = "";
      bio_SFG = "";
      bio_email = "";
    break
    
	  case "alain_bankier.html":
	    bio_Name = "Alain Bankier";
	    bio_Img = "";
	    bio_SFG = "";
	    bio_email = "";
	  break   

    case "william_benedict.html":
      bio_Name = "William Benedict";
      bio_Img = "";
      bio_SFG = "";
      bio_email = "";
    break
    
    case "gil_beyda.html":
    	bio_Name = "Gil Beyda";
      bio_Img = "";
      bio_SFG = "";
      bio_email = "";
    break
    
    case "thomas_blum.html":
      bio_Name = "Thomas Blum";
      bio_Img = "thomas_blum";
      bio_SFG = "Board of Directors";
      bio_email = "";
    break
    
    case "harvey_brofman.html":
      bio_Name = "Harvey Brofman";
      bio_Img = "";
      bio_SFG = "";
      bio_email = "";
    break   

    case "paul_cantwell.html":
    	bio_Name = "Paul Cantwell";
      bio_Img = "";
      bio_SFG = "";
      bio_email = "";
    break

    case "cliff_chapman.html":
      bio_Name = "Cliff Chapman";
      bio_Img = "";
      bio_SFG = "";
      bio_email = "";
    break
    
    case "brian_cohen.html":
      bio_Name = "Brian Cohen";
      bio_Img = "";
      bio_SFG = "Vice Chairman, Board of Directors";
      bio_email = "bscohen@yahoo.com";
    break

    case "anthony_dicaprio.html":
      bio_Name = "Anthony DiCaprio";
      bio_Img = "";
      bio_SFG = "";
      bio_email = "";
    break
    
    case "esther_dyson.html":
      bio_Name = "Esther Dyson";
      bio_Img = "";
      bio_SFG = "";
      bio_email = "edyson@edventure.com";
    break
    
    case "roger_ehrenberg.html":
      bio_Name = "Roger Ehrenberg";
      bio_Img = "";
      bio_SFG = "";
      bio_email = "roger@geometricgroup.com";
    break
    
    case "michael_ehrlich.html":
      bio_Name = "Michael Ehrlich";
      bio_Img = "";
      bio_SFG = "";
      bio_email = "";
    break   

    case "charlie_federman.html":
      bio_Name = "Charlie Federman";
      bio_Img = "";
      bio_SFG = "Board of Directors <br/> Sector Focus Group: Enterprise Hardware and Software";
      bio_email = "";
    break
    
    case "joan_finsilver.html":
      bio_Name = "Joan Finsilver";
      bio_Img = "";
      bio_SFG = "";
      bio_email = "";
    break   
   
    case "avi_fogel.html":
      bio_Name = "Avi Fogel";
      bio_Img = "";
      bio_SFG = "";
      bio_email = "";
    break   

    case "chris_fralic.html":
      bio_Name = "Chris Fralic";
      bio_Img = "";
      bio_SFG = "";
      bio_email = "";
    break   

    case "gideon_gartner.html":
      bio_Name = "Gideon Gartner";
      bio_Img = "";
      bio_SFG = "";
      bio_email = "";
    break
    
    case "mark_gerson.html":
      bio_Name = "Mark Gerson";
      bio_Img = "";
      bio_SFG = "";
      bio_email = "";
    break
    
    case "parker_gilbert.html":
      bio_Name = "Parker Gilbert";
      bio_Img = "";
      bio_SFG = "Board of Directors";
      bio_email = "pgilbert101@aol.com";
    break
    
    case "elaine_gilde.html":
      bio_Name = "Elaine Gilde";
      bio_Img = "";
      bio_SFG = "";
      bio_email = "";
    break
    
    case "israel_gitman.html":
      bio_Name = "Israel Gitman";
      bio_Img = "";
      bio_SFG = "";
      bio_email = "";
    break   

    case "martin_goetz.html":
      bio_Name = "Martin Goetz";
      bio_Img = "martin_goetz";
      bio_SFG = "Sector Focus Group: Enterprise Hardware and Software";
      bio_email = "";
    break
    
    case "eyal_goldwerger.html":
      bio_Name = "Eyal Goldwerger";
      bio_Img = "";
      bio_SFG = "";
      bio_email = "";
    break   

    case "noah_gotbaum.html":
      bio_Name = "Noah Gotbaum";
      bio_Img = "";
      bio_SFG = "";
      bio_email = "";
    break
    
    case "stephanie_hanbury_brown.html":
      bio_Name = "Stephanie Hanbury-Brown";
      bio_Img = "stephanie_hanbury_brown";
      bio_SFG = "";
      bio_email = "shb@goldenseeds.com";
    break
    
    case "arve_hanstveit.html":
      bio_Name = "Arve Hanstveit";
      bio_Img = "";
      bio_SFG = "";
      bio_email = "";
    break   

    case "adrian_hartog.html":
      bio_Name = "Adrian Hartog";
      bio_Img = "";
      bio_SFG = "";
      bio_email = "";
    break   

    case "philip_hartog.html":
      bio_Name = "Philip J. Hartog";
      bio_Img = "philip_hartog";
      bio_SFG = "";
      bio_email = "philip@hartog.nl";
    break   

    case "linda_holliday.html":
      bio_Name = "Linda Holliday";
      bio_Img = "";
      bio_SFG = "";
      bio_email = "";
    break   

    case "simon_hopkins.html":
      bio_Name = "Simon Hopkins";
      bio_Img = "";
      bio_SFG = "";
      bio_email = "";
    break   

    case "james_jorasch.html":
      bio_Name = "James Jorasch";
      bio_Img = "";
      bio_SFG = "";
      bio_email = "";
    break   

    case "geoff_judge.html":
      bio_Name = "Geoff Judge";
      bio_Img = "";
      bio_SFG = "Board of Directors";
      bio_email = "";
    break
    
    case "peter_jungen.html":
      bio_Name = "Peter Jungen";
      bio_Img = "";
      bio_SFG = "";
      bio_email = "";
    break
    
    case "glenn_kaufman.html":
      bio_Name = "Glenn Kaufman";
      bio_Img = "";
      bio_SFG = "";
      bio_email = "";
    break
    
    case "josh_kopelman.html":
      bio_Name = "Josh Kopelman";
      bio_Img = "josh_kopelman";
      //bio_SFG = "Board of Directors, Treasurer";
      bio_SFG = "";
      bio_email = "";
    break
    
    case "chad_kopp.html":
      bio_Name = "Chad Kopp";
      bio_Img = "";
      bio_SFG = "";
      bio_email = "";
    break   

    case "joshua_kushner.html":
      bio_Name = "Joshua Kushner";
      bio_Img = "";
      bio_SFG = "";
      bio_email = "";
    break   

    case "thomas_lehrman.html":
      bio_Name = "Thomas Lehrman";
      bio_Img = "";
      bio_SFG = "";
      bio_email = "";
    break   

    case "michael_loeb.html":
      bio_Name = "Michael Loeb";
      bio_Img = "";
      bio_SFG = "";
      bio_email = "";
    break
    
    case "bill_lohse.html":
      bio_Name = "William Lohse";
      bio_Img = "";
      bio_SFG = "";
      bio_email = "";
    break
    
    case "david_londoner.html":
      bio_Name = "David Londoner";
      bio_Img = "";
      bio_SFG = "Sector Focus Group: Content, Entertainment and Media";
      bio_email = "";
    break
    
    case "art_lutzke.html":
      bio_Name = "Art Lutzke";
      bio_Img = "";
      bio_SFG = "";
      bio_email = "";
    break
    
    case "david_marrus.html":
      bio_Name = "David Marrus";
      bio_Img = "";
      bio_SFG = "";
      bio_email = "";
    break
    
    case "bill_michels.html":
      bio_Name = "Bill Michels";
      bio_Img = "bill_michels";
      bio_SFG = "";
      bio_email = "michels_bill@alum.mit.edu";
    break
    
    case "don_middleberg.html":
      bio_Name = "Don Middleberg";
      bio_Img = "don_middleberg";
      bio_SFG = "Sector Focus Group: Content, Entertainment and Media";
      bio_email = "don@donmiddleberg.com";
    break
    
    case "howard_morgan.html":
      bio_Name = "Howard L. Morgan";
      bio_Img = "howard_morgan";
      //bio_SFG = "Board of Directors, Vice Chairman<br />Sector Focus Group: Enterprise Hardware and Software";
      bio_SFG = "";
      bio_email = "howard@idealab.com";
    break
    
    case "paul_olliver.html":
    	bio_Name = "Paul Olliver";
      bio_Img = "";
      bio_SFG = "";
      bio_email = "";
    break  
    
    case "alan_patricof.html":
      bio_Name = "Alan Patricof";
      bio_Img = "";
      bio_SFG = "";
      bio_email = "alan.patricof@apax.com";
    break
    
    case "todd_pines.html":
      bio_Name = "Todd Pines";
      bio_Img = "";
      bio_SFG = "";
      bio_email = "";
    break
    
    case "thomas_pulling.html":
      bio_Name = "Thomas Pulling";
      bio_Img = "";
      bio_SFG = "";
      bio_email = "";
    break
    
    case "scott_reardon.html":
      bio_Name = "Scott Reardon";
      bio_Img = "";
      bio_SFG = "";
      bio_email = "";
    break   

    case "bob_rice.html":
      bio_Name = "Bob Rice";
      bio_Img = "bob_rice";
      bio_SFG = "";
      bio_email = "Bob@BayStarCapital.com";
    break
    
    case "larry_richenstein.html":
      bio_Name = "Larry Richenstein";
      bio_Img = "";
      bio_SFG = "";
      bio_email = "";
    break
    
    case "david_rose.html":
      bio_Name = "David S. Rose";
      bio_Img = "david_rose";
      bio_SFG = "Board of Directors, Chairman<br />Sector Focus Group: Wireless";
      bio_email = "david@rosetechven.com";
    break
    
    case "mark_schneider.html":
      bio_Name = "Mark Schneider";
      bio_Img = "";
      bio_SFG = "";
      bio_email = "";
    break
    
    case "paul_sciabica.html":
      bio_Name = "Paul Sciabica";
      bio_Img = "";
      bio_SFG = "Staff, Executive Director";
      bio_email = "psciabica@newyorkangels.com";
    break
    
    case "joel_scotkin.html":
      bio_Name = "Joel Scotkin";
      bio_Img = "";
      bio_SFG = "";
      bio_email = "";
    break   

    case "jeffrey_seltzer.html":
      bio_Name = "Jeffrey Seltzer";
      bio_Img = "";
      bio_SFG = "Board of Directors <br/> Sector Focus Group: Business Services (FIRES)";
      bio_email = "jseltzer@pierceyates.com";
    break
    
    case "robert_semmens.html":
      bio_Name = "Robert Semmens";
      bio_Img = "";
      bio_SFG = "";
      bio_email = "";
    break
    
    case "jeffrey_silverman.html":
      bio_Name = "Jeffrey Silverman";
      bio_Img = "";
      bio_SFG = "";
      bio_email = "";
    break   

    case "ed_smith.html":
      bio_Name = "Ed Smith";
      bio_Img = "ed_smith";
      bio_SFG = "";
      bio_email = "edsmith100@hotmail.com";
    break
    
    case "robert_spring.html":
      bio_Name = "Robert Spring";
      bio_Img = "";
      bio_SFG = "";
      bio_email = "";
    break
    
    case "mitch_stevens.html":
      bio_Name = "Mitch Stevens";
      bio_Img = "";
      bio_SFG = "";
      bio_email = "";
    break
    
    case "jeff_stewart.html":
      bio_Name = "Jeff Stewart";
      bio_Img = "";
      bio_SFG = "";
      bio_email = "";
    break
    
    case "kumar_verma.html":
      bio_Name = "Kumar Verma";
      bio_Img = "";
      bio_SFG = "";
      bio_email = "vermak@digitalroot.com";
    break
    
    case "ernie_von_simson.html":
      bio_Name = "Ernie von Simson";
      bio_Img = "";
      bio_SFG = "Sector Focus Group: Enterprise Hardware and Software";
      bio_email = "";
    break
    
    case "thomas_wisniewski.html":
      bio_Name = "Thomas Wisniewski";
      bio_Img = "";
      bio_SFG = "Board of Directors";
      bio_email = "";
    break
    
    case "michael_zisman.html":
      bio_Name = "Dr. Michael D. Zisman";
      bio_Img = "michael_zisman";
      bio_SFG = "Sector Focus Group: Enterprise Hardware and Software";
      bio_email = "";
    break
    
    //advisory members
    
    case "steve_brotman.html":
      bio_Name = "Steve Brotman";
      bio_Img = "steve_brotman";
      bio_SFG = "Silicon Alley Venture Partners<br />Investment Advisory Member<br />Sector Focus Group: Internet Commerce";
      bio_email = "steve@savp.com";
    break
    
    case "brad_burnham.html":
      bio_Name = "Brad Burnham";
      bio_Img = "brad_burnham";
      bio_SFG = "Union Square Ventures<br />Investment Advisory Member";
      bio_email = "brad@unionsquareventures.com";
    break
    
    case "stuart_ellman.html":
      bio_Name = "Stuart Ellman";
      bio_Img = "";
      bio_SFG = "RRE Ventures<br />Investment Advisory Member";
      bio_email = "sje@RRE.COM";
    break
    
    case "dan_flatley.html":
      bio_Name = "Dan Flatley";
      bio_Img = "";
      bio_SFG = "Masthead Ventures, Partner<br />Investment Advisory Member";
      bio_email = "dflatley@mvpartners.com";
    break
    
    case "thomas_jones.html":
      bio_Name = "Thomas Jones";
      bio_Img = "thomas_jones";
      bio_SFG = "TWJ Capital LLC<br />Investment Advisory Member";
      bio_email = "";
    break
    
    case "charlie_odonnell.html":
      bio_Name = "Charlie O'Donnell";
      bio_Img = "charlie_odonnell";
      bio_SFG = "Union Square Ventures<br />Investment Advisory Member";
      bio_email = "charlie@unionsquareventures.com";
    break
    
    case "fred_wilson.html":
      bio_Name = "Fred Wilson";
      bio_Img = "fred_wilson";
      bio_SFG = "Union Square Ventures<br />Investment Advisory Member";
      bio_email = "fred@unionsquareventures.com";
    break
    
    case "alan_reef.html":
      bio_Name = "Alan Reef";
      bio_Img = "";
      bio_SFG = "Overbrook Management Corporation<br />Investment Advisory Member";
      bio_email = "";
    break
    
    default:
      bio_Name = "";
      bio_Img = "";
      bio_SFG = "";
      bio_email = "";
  }
  return bio_Name;
  return bio_Img;
  return bio_SFG;
  return bio_email;
}

function getData_EventsPicker(selectedMonth, selectedYear) {
  switch(monthNames[selectedMonth] + " " + selectedYear) {
    case "December 2007":
      eventDates =  new Array(5,                    12,                    19);
      eventTitles = new Array("Screening Meetings", "NYA Annual Meeting",  "Due Diligence Meetings" );
      eventTimes =  new Array("8:00am - 12:00pm",   "8:00am - 5:00am",     "8am, 10:30am, 2pm" );
      break
    case "January 2008":
      eventDates =  new Array(9,                    23,                 30);
      eventTitles = new Array("Screening Meetings", "Angel Breakfast",  "Due Diligence Meetings" );
      eventTimes =  new Array("8:00am - 12:00pm",   "8:00am - 11:00am", "8am, 10:30am, 2pm" );
      break
    case "February 2008":
      eventDates = new Array( 6,                    20,                 27);
      eventTitles = new Array("Screening Meetings", "Angel Breakfast",  "Due Diligence Meetings" );
      eventTimes =  new Array("8:00am - 12:00pm",   "8:00am - 11:00am", "8am, 10:30am, 2pm" );
      break
    case "March 2008":
      eventDates = new Array(5,                     19,                 26);
      eventTitles = new Array("Screening Meetings", "Angel Breakfast",  "Due Diligence Meetings" );
      eventTimes =  new Array("8:00am - 12:00pm",   "8:00am - 11:00am", "8am, 10:30am, 2pm" );
      break
    case "April 2008":
      eventDates = new Array(9,                     23,                 30);
      eventTitles = new Array("Screening Meetings", "Angel Breakfast",  "Due Diligence Meetings" );
      eventTimes =  new Array("8:00am - 12:00pm",   "8:00am - 11:00am", "8am, 10:30am, 2pm" );
      break
    case "May 2008":
      eventDates = new Array(7,                     21,                 28);
      eventTitles = new Array("Screening Meetings", "Angel Breakfast",  "Due Diligence Meetings" );
      eventTimes =  new Array("8:00am - 12:00pm",   "8:00am - 11:00am", "8am, 10:30am, 2pm" );
      break
    case "June 2008":
      eventDates = new Array(4,                     18,                 25);
      eventTitles = new Array("Screening Meetings", "Angel Breakfast",  "Due Diligence Meetings" );
      eventTimes =  new Array("8:00am - 12:00pm",   "8:00am - 11:00am", "8am, 10:30am, 2pm" );
      break
    case "July 2008":
      eventDates =  new Array(9,                    23,                 30);
      eventTitles = new Array("Screening Meetings", "Angel Breakfast",  "Due Diligence Meetings" );
      eventTimes =  new Array("8:00am - 12:00pm",   "8:00am - 11:00am", "8am, 10:30am, 2pm" );
      break
    case "September 2008":
      eventDates =  new Array(3,                    17,                 24);
      eventTitles = new Array("Screening Meetings", "Angel Breakfast",  "Due Diligence Meetings" );
      eventTimes =  new Array("8:00am - 12:00pm",   "8:00am - 11:00am", "8am, 10:30am, 2pm" );
      break
    case "October 2008":
      eventDates = new Array(8,                     22,                 29);
      eventTitles = new Array("Screening Meetings", "Angel Breakfast",  "Due Diligence Meetings" );
      eventTimes =  new Array("8:00am - 12:00pm",   "8:00am - 11:00am", "8am, 10:30am, 2pm" );
      break
    case "November 2008":
      eventDates = new Array(5,                     19,                 26);
      eventTitles = new Array("Screening Meetings", "Angel Breakfast",  "Due Diligence Meetings" );
      eventTimes =  new Array("8:00am - 12:00pm",   "8:00am - 11:00am", "8am, 10:30am, 2pm" );
      break
    case "December 2008":
      eventDates =  new Array(3,                    10,                 17);
      eventTitles = new Array("Screening Meetings", "Angel Breakfast",  "Due Diligence Meetings" );
      eventTimes =  new Array("8:00am - 12:00pm",   "8:00am - 11:00am", "8am, 10:30am, 2pm" );
      break
    default:
      eventDates = new Array();
      eventTitles = new Array();
      eventTimes = new Array();
  }
  return eventDates;
  return eventTitles;
  return eventTimes;
}
