//
// Copyright (c) 2006 by Conor O'Mahony.
// For enquiries, please email GubuSoft@GubuSoft.com.
// Please keep all copyright notices below.
// Original author of TreeView script is Marcelino Martins.
//
// This document includes the TreeView script.
// The TreeView script can be found at http://www.TreeView.net.
// The script is Copyright (c) 2006 by Conor O'Mahony.
//
// You can find general instructions for this file at www.treeview.net.
//

USETEXTLINKS = 1
STARTALLOPEN = 0
USEFRAMES = 0
USEICONS = 1
WRAPTEXT = 1
PRESERVESTATE = 0

//
// The following code constructs the tree.  This code produces a tree that looks like:
// 
// Tree Options
//  - Expand for example with pics and flags
//    - United States
//      - Boston
//      - Tiny pic of New York City
//      - Washington
//    - Europe
//      - London
//      - Lisbon
//  - Types of node
//    - Expandable with link
//      - London
//    - Expandable without link
//      - NYC
//    - Opens in new window
//

foldersTree = gFld('Open For Business', 'javascript:parent.op();')
f = foldersTree
//    coupons, discounts and freebies section
fSub = insFld(f,gFld('Shopping and Dining', 'javascript:parent.op();'))
insDoc(fSub,gLnk('R', 'Super Suppers special', 'http://www.fremontbusiness.com/open4Business/memberPageCoupons/supersuppersL.pdf')) // ends SSSSS
insDoc(fSub,gLnk('R', 'Les Schwab Tires Special', 'http://www.fremontbusiness.com/open4Business/memberPageCoupons/LesSchwabTires_chamber_special.pdf')) // ends ??????


//    member to member discount section
fSub = insFld(f,gFld('Member to Member Discounts', 'javascript:parent.op();'))
insDoc(fSub,gLnk('R', 'Office Depot', 'http://www.fremontbusiness.com/open4Business/memberPageCoupons/Office_Depot.htm'))
insDoc(fSub,gLnk('R', 'AAA New Member Discount', 'http://www.fremontbusiness.com/open4Business/memberPageCoupons/AAAFremontChamCommerceFlyer.pdf'))



//    special announcements section
fSub = insFld(f,gFld('Special Announcements', 'javascript:parent.op();'))
insDoc(fSub,gLnk('R', 'Mission Peak Fitness Announces New Classes', 'http://www.fremontbusiness.com/open4Business/memberPageCoupons/Mission-Peak-Fitness-Flyer.pdf'))
insDoc(fSub,gLnk('R', 'Tech CU New Member Special', 'http://www.fremontbusiness.com/open4Business/memberPageCoupons/TechCU_Fremont.pdf')) // ends ??????
insDoc(fSub,gLnk('R', 'Tech CU Q3 Special', 'http://www.fremontbusiness.com/open4Business/memberPageCoupons/TechCU_Q3_2010_Flyer.pdf')) // ends Sep 30 2010





//    job openings and volunteer opportunities section
fSub = insFld(f,gFld('Job Openings and Volunteer Opportunities', 'javascript:parent.op();'))
insDoc(fSub,gLnk('R', 'Post Your Job Here', 'http://www.fremontbusiness.com/open4Business/memberPageCoupons/JobPostingHowTo.htm'))
insDoc(fSub,gLnk('R', 'Employers get help with paid work experience', 'http://www.fremontbusiness.com/open4Business/memberPageCoupons/paid-work-experience-2010.pdf')) 
insDoc(fSub,gLnk('R', 'Homeless Outreach and Support Specialist - ABODE', 'http://www.abodeservices.org/docs/Abode_Job_HOPE_Specialist.pdf')) 
insDoc(fSub,gLnk('R', 'Development Associate - ABODE', 'http://www.abodeservices.org/docs/Abode_Job_DevelopmentAssociate.pdf'))
insDoc(fSub,gLnk('R', 'SAVE Help Wanted', 'http://www.fremontbusiness.com/open4Business/memberPageCoupons/SAVE_helpWanted.htm'))  



//    events section
fSub = insFld(f,gFld('Events', 'javascript:parent.op();'))
insDoc(fSub,gLnk('R', 'Puccinis La Rondiné The Swallow at the Smith Center Aug 7', 'http://www.google.com/calendar/event?eid=MHQ1YmgxM201MmFnNzhwbGNnYXUxbWMwcmsgY2tqbmYwYm9kdTQ5a3VvOW5pMmIyYTRhajBAZw&ctz=America/Los_Angeles')) // ends Aug 7 2010
insDoc(fSub,gLnk('R', 'LOV Summer Recreation and Meal Program July 12 to Aug 19', 'http://www.google.com/calendar/event?eid=NHUwa2QzNTlqNDNiYnJsbmJxbnExOXVyNGtfMjAxMDA3MTJUMTcwMDAwWiBja2puZjBib2R1NDlrdW85bmkyYjJhNGFqMEBn&ctz=America/Los_Angeles')) // ends Aug 19 2010
insDoc(fSub,gLnk('R', 'Day in the Park Camp Arroyo Livermore Aug 29', 'http://www.fremontbusiness.com/open4Business/memberPageCoupons/TFF-Camp-Arroyo-2010.htm')) // ends Aug 30 2010
insDoc(fSub,gLnk('R', 'OneChild Golf Tourney Sep 28', 'http://www.google.com/calendar/render?eid=cXRxYmdmdGxmMXM0MHFtMjZzaW44NHVmMmcgY2tqbmYwYm9kdTQ5a3VvOW5pMmIyYTRhajBAZw&ctz=America/Los_Angeles&sf=true&output=xml')) // ends Sep 28 2010










