/*****************************************************************************
Default browsercheck - Leave this one
******************************************************************************/
function lib_bwcheck(){ //Browsercheck (needed)
	this.ver=navigator.appVersion; this.agent=navigator.userAgent
	this.dom=document.getElementById?1:0
	this.ie8=(this.ver.indexOf("MSIE 8")>-1 && this.dom)?1:0;
	this.ie7=(this.ver.indexOf("MSIE 7")>-1 && this.dom)?1:0;
	this.ie6=(this.ver.indexOf("MSIE 6")>-1 && this.dom)?1:0;
	this.ie5=(this.ver.indexOf("MSIE 5")>-1 && this.dom)?1:0;
	this.ie4=(document.all && !this.dom)?1:0;
	this.ie=this.ie4||this.ie5||this.ie6||this.ie7||this.ie8
	this.mac=this.agent.indexOf("Mac")>-1
	this.opera5=this.agent.indexOf("Opera 5")>-1
	this.ns6=(this.dom && parseInt(this.ver) >= 5) ?1:0; 
	this.ns4=(document.layers && !this.dom)?1:0;
	this.bw=(this.ie8 || this.ie7 || this.ie6 || this.ie5 || this.ie4 || this.ns4 || this.ns6 || this.opera5 || this.dom)
	return this
}
var bw=new lib_bwcheck() //Making browsercheck object

var mDebugging=2 //General debugging variable. Set to 0 for no debugging, 1 for alerts or 2 for status debugging.

oCMenu=new makeCoolMenu("oCMenu") //Making the menu object. Argument: menuname
oCMenu.useframes=0 //Do you want to use the menus as coolframemenu or not? (in frames or not) - Value: 0 || 1
oCMenu.frame="" //The name of your main frame (where the menus should appear). Leave empty if you're not using frames - Value: "main_frame_name"

oCMenu.useclick=0 //If you want the menu to be activated and deactivated onclick only set this to 1. - Value: 0 || 1

//If you set this to 1 you will get a "hand" cursor when moving over the links in NS4. 
//NOTE: This does not apply to the submenus if the menu is used in frames due some major problems with NS4
oCMenu.useNS4links=1  

//After adding the "hover effect" for netscape as well, all styles are lost. But if you want padding add it here.
oCMenu.NS4padding=2 

//If you have select boxes close to your menu the menu will check for that and hide them if they are in the way of the menu.
//This feature does unfortunatly not work in NS4!
oCMenu.checkselect=1

//If you choose to have this code inside a linked js, or if your using frames it's important to set these variables. 
//This will help you get your links to link to the right place even if your files are in different folders.
//The offlineUrl variable is the actual path to the directory where you js file are locally. 
//This is just so you can test it without uploading. Remember to start it with file:/// and only use slashes, no backward slashes!
//Also remember to end with a slash 
oCMenu.offlineUrl="" //Value: "path_to_menu_file_offline/"

//The onlineUrl variable is the online path to your script. Place in the full path to where your js file is. Remember to end with a slash.
oCMenu.onlineUrl="" //Value: "path_to_menu_file_online/"

oCMenu.pagecheck=1 //Do you want the menu to check whether any of the subitems are out of the bouderies of the page and move them in again (this is not perfect but it should work) - Value: 0 || 1
oCMenu.checkscroll=0 //Do you want the menu to check whether the page has scrolled or not? For frames you should always set this to 1. You can set this to 2 if you want this feature only on explorer since netscape doesn't support the window.onscroll this will make netscape slower (only if not using frames) - Value: 0 || 1 || 2
oCMenu.resizecheck=1 //Do you want the page to reload if it's resized (This should be on or the menu will crash in Netscape4) - Value: 0 || 1
oCMenu.wait=1000 //How long to wait before hiding the menu on mouseout. Netscape 6 is a lot slower then Explorer, so to be sure that it works good enough there you should not have this lower then 500 - Value: milliseconds

//Background bar properties
oCMenu.usebar=0 //If you want to use a background-bar for the top items set this on - Value: 1 || 0
oCMenu.barcolor="" //The color of the background bar - Value: "color"
oCMenu.barwidth="menu" //The width of the background bar. Set this to "menu" if you want it to be the same width as the menu. (this will change to match the border if you have one) - Value: px || "%" || "menu"
oCMenu.barheight="menu" //The height of the background bar. Set this to "menu" if you want it to be the same height as the menu. (this will change to match the border if you have one) - Value: px || "%" || "menu"
oCMenu.barx="menu" //The left position of the bar. Set this to "menu" if you want it be the same as the left position of the menu. (this will change to match the border if you have one)  - Value: px || "%" || "menu"
oCMenu.bary="menu" //The top position of the bar Set this to "menu" if you want it be the same as the top position of the menu. (this will change to match the border if you have one)  - Value: px || "%" || "menu"
oCMenu.barinheritborder=0 //Set this to 1 if you want the bar to have the same border as the top menus - Value: 0 || 1

//Placement properties
oCMenu.rows=1 //This controls whether the top items is supposed to be laid out in rows or columns. Set to 0 for columns and 1 for row - Value 0 || 1
oCMenu.fromleft=8 //This is the left position of the menu. (Only in use if menuplacement below is 0 or aligned) (will change to adapt any borders) - Value: px || "%"
oCMenu.fromtop=bw.ie*10+93 //This is the left position of the menu. (Only in use if menuplacement below is 0 or aligned) (will change to adapt any borders) - Value: px || "%"
oCMenu.pxbetween=0 //How much space you want between each of the top items. - Value: px || "%"

/*
You have several different ways to place the top items. 
You can have them right beside eachother (only adding the pxbetween variable)
oCMenu.menuplacement=0

You can have them aligned to one of the sides - This is mostly when not using frames, but can be used in both conditions
Values: (If you get strange results check the fromleft,fromtop and pxbetween variables above)
For menus that are placed in columns (align=left or align=right (see below)) you can align them to the "right" or "center"
For menus that are placed in rows (align=top or align=bottom (see below)) you can align them to the "bottom", "center" or "bottomcenter"
oCMenu.menuplacement="center"

You can also set them directly in pixels: (Remember to have as many array members as you have top items)
oCMenu.menuplacement=new Array(10,200,400,600)

Or you can place in percentage: (remember to use the ' ' around the numbers)

Choose one of those options to get the desired results.
*/

oCMenu.menuplacement="left"

/*
Now we are ready for the properties of each level. For those of that have used the old 
coolmenus for coolframemenu I will try and explain how this works like this:
level[0] = top items
level[1] = sub items
level[2] = sub2 items
level[3] = sub3 items and so on....
All menus will inherit the properties, and all properties does only HAVE to be specifed on the top level. 
If a level doesn't have on property specified it will look for it on the last level that was specified, 
if it still doesn't exist it will get the properties from level[0]

Which means that if you set the background color on level[0] to "black" and doesn't specify any more levels or doesn't 
specify the background color on the last level you specified ALL menus will get the color from level[0]

Did that make sense at all? This can be a little hard to understand, look at the different examples on my site
and play with and I am sure you'll get what I mean.
*/

//TOP LEVEL PROPERTIES - ALL OF THESE MUST BE SPECIFIED FOR LEVEL[0]
oCMenu.level[0]=new Array() //Add this for each new level
oCMenu.level[0].width=150 //The default width for each level[0] (top) items. You can override this on each item by specifying the width when making the item. - Value: px || "%"
oCMenu.level[0].height=24 //The default height for each level[0] (top) items. You can override this on each item by specifying the height when making the item. - Value: px || "%"
oCMenu.level[0].bgcoloroff="#FFFFFF" //The default background color for each level[0] (top) items. You can override this on each item by specifying the backgroundcolor when making the item. - Value: "color"
oCMenu.level[0].bgcoloron="" //The default "on" background color for each level[0] (top) items. You can override this on each item by specifying the "on" background color when making the item. - Value: "color"
oCMenu.level[0].textcolor="#400000" //The default text color for each level[0] (top) items. You can override this on each item by specifying the text color when making the item. - Value: "color"
oCMenu.level[0].hovercolor="#800000" //The default "on" text color for each level[0] (top) items. You can override this on each item by specifying the "on" text color when making the item. - Value: "color"
oCMenu.level[0].style="padding:4px; font-family:arial,verdana,helvetica; font-size:12px; font-weight:bold" //The style for all level[0] (top) items. - Value: "style_settings"
oCMenu.level[0].border=1 //The border size for all level[0] (top) items. - Value: px
oCMenu.level[0].bordercolor="#EEEEEE" //The border color for all level[0] (top) items. - Value: "color"
oCMenu.level[0].offsetX=0 //The X offset of the submenus of this item. This does not affect the first submenus, but you need it here so it can be the default value for all levels. - Value: px
oCMenu.level[0].offsetY=-1 //The Y offset of the submenus of this item. This does not affect the first submenus, but you need it here so it can be the default value for all levels. - Value: px
oCMenu.level[0].NS4font="arial,verdana,helvetica"
oCMenu.level[0].NS4fontSize="2"

//SUB LEVEL[1] PROPERTIES - You have to specify the properties you want different from LEVEL[0] - If you want all items to look the same just remove this
oCMenu.level[1]=new Array() //Add this for each new level (adding one to the number)
oCMenu.level[1].width=oCMenu.level[0].width  
oCMenu.level[1].style="padding:4px; font-family:arial,verdana,helvetica; font-size:11.5px; font-weight:bold" // The style for all level[0] (top) items. - Value: "style_settings"
oCMenu.level[1].align="bottom" 
oCMenu.level[1].border=1 //The border size for all level[0] (top) items. - Value: px
oCMenu.level[1].bordercolor="#EEEEEE" //The border color for all level[0] (top) items. - Value: "color"
oCMenu.level[1].offsetX=-oCMenu.level[1].width+75  
oCMenu.level[1].offsetY=15

//SUB LEVEL[2] PROPERTIES - You have to specify the properties you want different from LEVEL[1] OR LEVEL[0] - If you want all items to look the same just remove this
oCMenu.level[2]=new Array() //Add this for each new level (adding one to the number)
oCMenu.level[2].width=180
oCMenu.level[2].style="padding:4px; font-family:arial,verdana,helvetica; font-size:11.5px; font-weight:bold" // The style for all level[0] (top) items. - Value: "style_settings"
oCMenu.level[2].border=1 //The border size for all level[0] (top) items. - Value: px
oCMenu.level[2].bordercolor="#EEEEEE" //The border color for all level[0] (top) items. - Value: "color"
oCMenu.level[2].offsetX=-oCMenu.level[2].width+75  
oCMenu.level[2].offsetY=15

//SUB LEVEL[3] PROPERTIES - You have to specify the properties you want different from LEVEL[1] OR LEVEL[0] - If you want all items to look the same just remove this
oCMenu.level[3]=new Array() //Add this for each new level (adding one to the number)
oCMenu.level[3].width=190
oCMenu.level[3].style="padding:4px; font-family:arial,verdana,helvetica; font-size:11.5px; font-weight:bold" // The style for all level[0] (top) items. - Value: "style_settings"
oCMenu.level[3].border=1 //The border size for all level[0] (top) items. - Value: px
oCMenu.level[3].bordercolor="#EEEEEE" //The border color for all level[0] (top) items. - Value: "color"
oCMenu.level[3].offsetX=-oCMenu.level[3].width+75
oCMenu.level[3].offsetY=15

//SUB LEVEL[4] PROPERTIES - You have to specify the properties you want different from LEVEL[1] OR LEVEL[0] - If you want all items to look the same just remove this
oCMenu.level[4]=new Array() //Add this for each new level (adding one to the number)
oCMenu.level[4].width=200
oCMenu.level[4].border=1 //The border size for all level[0] (top) items. - Value: px
oCMenu.level[4].bordercolor="#EEEEEE" //The border color for all level[0] (top) items. - Value: "color"
oCMenu.level[4].style="padding:4px; font-family:arial,verdana,helvetica; font-size:11.5px; font-weight:bold" // The style for all level[0] (top) items. - Value: "style_settings"
oCMenu.level[4].offsetX=-oCMenu.level[4].width+75  
oCMenu.level[4].offsetY=15

//New: Added animation features that can be controlled on each level.
oCMenu.level[0].clip=0 //Set this to 1 if you want the submenus of this level to "slide" open in a animated clip effect. - Value: 0 || 1
oCMenu.level[0].clippx=0 //If you have clip specified you can set how many pixels it will clip each timer in here to control the speed of the animation. - Value: px 
oCMenu.level[0].cliptim=0 //This is the speed of the timer for the clip effect. Play with this and the clippx to get the desired speed for the clip effect (be carefull though and try and keep this value as high or possible or you can get problems with NS4). - Value: milliseconds

//Filters - This can be used to get some very nice effect like fade, slide, stars and so on. EXPLORER5.5+ ONLY - If you set this to a value it will override the clip on the supported browsers
oCMenu.level[0].filter=0 //VALUE: 0 || "filter specs"

/*
And last but not least the align variable.

This specifies how the submenus of this level comes out. 
Values:
"bottom": The sub menus of this level will come out on the top of this item
"top": The sub menus of this level will come out on the bottom of this item
"left": The sub menus of this level will come out on the right of this item
"right": The sub menus of this level will come out on the left of this item

In generally "left" and "right" works best for menus in columns and "top" and "bottom" works best for menus in rows. 
But by all means feel free to play with it.

If you have set pagecheck to 1 above this is what the pagecheck will change when reaching the bounderies of the page.
If it reaches the right boundery and it's aligned left it will change the align to right and so on.
*/

oCMenu.level[0].align="bottom" //Value: "top" || "bottom" || "left" || "right" 

/*
Variables for each menu item: (** means that they have to be specified!)
name: The name of the item. This must be unique for each item. Do not use spaces or strange charachters in this one! **
parent: The name of the menuitem you want this to "connect" to. This will be a submenu of the item that have the name you place in here. ** for all other then the topitems
text: The text you want in the item. ** (except if you use images) 
link: The page you want this item to link to.
target: The target window or frame you want the link to go to (Default is same window if you're not using frames, and the mainframe if you're using frames)
width: The width of the element. If not specified it will get the default width specified above.
height: The height of the element. If not specified it will get the default height specified above.
img1: The "off" image for element if you want to use images.
img2: The image that appears onmouseover if using images.
bgcoloroff: The background color for this item. If not specified it will get the default background color specified above.
bgcoloron: The "on" background color for this item. If not specified it will get the default "on" background color specified above.
textcolor: The text color for this item. If not specified it will get the default text color specified above.
hovercolor: The "on" text color for this item. If not specified it will get the default "on" text color specified above. Netscape4 ignores this
onclick: If you want something to happen when the element is clicked (different from going to a link) specifiy it here.
onmouseover: This will happen when you mouseover the element. Could be status text, another imageswap or whatever.
onmouseout: This will happen when you mouseout the element.

Remember you can have as many levels/sublevels as you want. Just make sure you specify the correct "parent" for each item.
To set styles for each level see above.
*/

oCMenu.makeMenu('top0','','School Council','#Top','','','','','','#CD9A9C','#EFBCBE')
	oCMenu.makeMenu('sub00','top0','Archives','#Archived Items','','','','','','#CD9A9C','#EFBCBE')
	oCMenu.makeMenu('sub01','top0','Calendar','#Calendar','','','','','','#CD9A9C','#EFBCBE')
		oCMenu.makeMenu('sub010','sub01','Cupcake Days',"javascript:popup('pgicupcake03.htm','popup','scrollbars=yes,resizable=yes,width=640,height=480')",'','','','','','#CD9A9C','#EFBCBE')
		oCMenu.makeMenu('sub012','sub01','Early Dismissal Days',"javascript:popup('art031020a.htm','popup','scrollbars=yes,resizable=yes,width=640,height=300')",'','','','','','#CD9A9C','#EFBCBE')
		oCMenu.makeMenu('sub014','sub01','School Year Calendar',"javascript:popup('art030414e.htm','popup','scrollbars=yes,resizable=yes,width=640,height=480')",'','','','','','#CD9A9C','#EFBCBE')
	oCMenu.makeMenu('sub02','top0','Community Notices','#Community Notices','','','','','','#CD9A9C','#EFBCBE')
	oCMenu.makeMenu('sub03','top0','Contact Us','mailto:pgsc@vrooman.org','','','','','','#CD9A9C','#EFBCBE') 
		oCMenu.makeMenu('sub030','sub03','2003-04 Members List',"javascript:popup('pgsc03a.htm','popup','scrollbars=no,resizable=yes,width=550,height=370')",'','','','','','#CD9A9C','#EFBCBE') 
	oCMenu.makeMenu('sub04','top0','Minutes & Agendas','#Meeting Agendas, Minutes &amp; Reports','','','','','','#CD9A9C','#EFBCBE')
	oCMenu.makeMenu('sub05','top0','News & Reminders','#News','','','','','','#CD9A9C','#EFBCBE')
	oCMenu.makeMenu('sub06','top0','Resources','#School Council Resources &amp; References','','','','','','#CD9A9C','#EFBCBE')
		oCMenu.makeMenu('sub060','sub06','Volunteer Brochure','http://pgsc.vrooman.org/pgivolsur03-04.pdf','_blank','','','','','#CD9A9C','#EFBCBE')
		oCMenu.makeMenu('sub061','sub06','Volunteer Survey','http://pgsc.vrooman.org/pgfvolsur03-04.pdf','_blank','','','','','#CD9A9C','#EFBCBE')
		oCMenu.makeMenu('sub062','sub06','Council Nomination Form','http://pgsc.vrooman.org/pgfnom03.pdf','_blank','','','','','#CD9A9C','#EFBCBE')
		oCMenu.makeMenu('sub063','sub06','Council Responsibilities','http://pgsc.vrooman.org/pgres9903a.htm','_blank','','','','','#CD9A9C','#EFBCBE')
		oCMenu.makeMenu('sub064','sub06','Council Constitution','http://pgsc.vrooman.org/pgcon01a.pdf','_blank','','','','','#CD9A9C','#EFBCBE')
	oCMenu.makeMenu('sub07','top0','School Website','http://pin.hdsb.ca','_blank','','','','','#CD9A9C','#EFBCBE') 
		oCMenu.makeMenu('sub071','sub07','Grassroots Project','http://pin.hdsb.ca/grassroots.htm','_blank','','','','','#CD9A9C','#EFBCBE') 
	oCMenu.makeMenu('sub08','top0','School Daily Schedule',"javascript:popup('hockeyday.htm','popup','scrollbars=no,resizable=yes,width=400,height=400')",'','','','','','#CD9A9C','#EFBCBE') 

oCMenu.makeMenu('top1','','French Immersion','','','','','','','#FFCF76','#FFDF96')
	oCMenu.makeMenu('sub10','top1','Cdn Parents for French','http://www.cpf.ca','_blank','','','','','#FFCF76','#FFDF96')
		oCMenu.makeMenu('sub100','sub10','CPF Halton','http://cpfhalton.vrooman.org/','_blank','','','','','#FFCF76','#FFDF96')
		oCMenu.makeMenu('sub101','sub10','CPF Ontario','http://www.cpfont.on.ca/','_blank','','','','','#FFCF76','#FFDF96')
		oCMenu.makeMenu('sub102','sub10','CPF Canada','http://www.cpf.ca','_blank','','','','','#FFCF76','#FFDF96')
			oCMenu.makeMenu('sub1020','sub102','Coin des jeunes','http://www.cpf.ca/English/Students/coin%20des%20jeunes.htm','_blank','','','','','#FFCF76','#FFDF96')
			oCMenu.makeMenu('sub1021','sub102','FSL Programs and Issues','http://www.cpf.ca/English/resources/FAQ/index.htm','_blank','','','','','#FFCF76','#FFDF96')
			oCMenu.makeMenu('sub1022','sub102','School Self-Assessment','http://www.cpf.ca/English/resources/School%20Self/index.htm','_blank','','','','','#FFCF76','#FFDF96')
	oCMenu.makeMenu('sub11','top1','Halton DSB','http://www.haltondsb.on.ca/main.asp?sMenuID=453&sParentID=61&PageID=300','_blank','','','','','#FFCF76','#FFDF96')
		oCMenu.makeMenu('sub110','sub11','"Facts and Perceptions"','http://www.haltondsb.on.ca/download.asp?sMenuID=453&filename=FI%5FFactsandPerceptions%2Epdf','_blank','','','','','#FFCF76','#FFDF96')
		oCMenu.makeMenu('sub111','sub11','"FI Schools in Halton"','http://www.haltondsb.on.ca/download.asp?sMenuID=453&filename=FrenchIMLocations%2Epdf','_blank','','','','','#FFCF76','#FFDF96')
	oCMenu.makeMenu('sub12','top1','Halton Catholic DSB','http://www.haltonrc.edu.on.ca/frenchimmersion/','_blank','','','','','#FFCF76','#FFDF96')
	oCMenu.makeMenu('sub13','top1','Hamilton-Wentworth DSB','http://www.hwdsb.on.ca/fimmersion/','_blank','','','','','#FFCF76','#FFDF96')
	oCMenu.makeMenu('sub14','top1','Peel DSB','http://www.peel.edu.on.ca/media/news2001/FIprograms01.htm','_blank','','','','','#FFCF76','#FFDF96')
		
oCMenu.makeMenu('top2','','Sites éducatifs','','','','','','','#F7F78F','#FFFFBF')
	oCMenu.makeMenu('sub20','top2','pour t&ecirc;tards','','','','','','','#F7F78F','#FFFFBF')
		oCMenu.makeMenu('sub200','sub20','Canada','','','','','','','#F7F78F','#FFFFBF') 
			oCMenu.makeMenu('sub2001','sub200','Au sujet du Canada','http://canada.gc.ca/acanada/acPubHome.jsp?lang=fre','_blank','','','','','#F7F78F','#FFFFBF') 
			oCMenu.makeMenu('sub2003','sub200',"L'Encyclopédie canadienne",'http://www.canadianencyclopedia.ca/index.cfm?TCE_Version=F','_blank','','','','','#F7F78F','#FFFFBF') 
				oCMenu.makeMenu('sub20030','sub2003','Historica','http://www.histori.ca/default.do','_blank','','','','','#F7F78F','#FFFFBF') 
			oCMenu.makeMenu('sub2005','sub200','Monnaie royale canadienne','http://www.mint.ca/fr/RoyallyCool/Index_Cool.htm','_blank','','','','','#F7F78F','#FFFFBF') 
		oCMenu.makeMenu('sub201','sub20','Astérix (site officiel)','http://www.asterix.tm.fr','_blank','','','','','#F7F78F','#FFFFBF') 
		oCMenu.makeMenu('sub203','sub20','CPF Coin des jeunes','http://www.cpf.ca/English/Students/coin%20des%20jeunes.htm','_blank','','','','','#F7F78F','#FFFFBF') 
		oCMenu.makeMenu('sub204','sub20','Mathématiques','','','','','','','#F7F78F','#FFFFBF') 
			oCMenu.makeMenu('sub2041','sub204','math.com','http://math.com/','_blank','','','','','#F7F78F','#FFFFBF') 
			oCMenu.makeMenu('sub2043','sub204','MathStories.com','http://www.mathstories.com/','_blank','','','','','#F7F78F','#FFFFBF') 
			oCMenu.makeMenu('sub2045','sub204','Pythagoras Math','http://www.mathematica.ca/','_blank','','','','','#F7F78F','#FFFFBF') 
		oCMenu.makeMenu('sub205','sub20','Musées et bibliothèques','','','','','','','#F7F78F','#FFFFBF') 
			oCMenu.makeMenu('sub2051','sub205','Art Gallery of Ontario','http://www.ago.net/navigation/flash/index.cfm','_blank','','','','','#F7F78F','#FFFFBF') 
			oCMenu.makeMenu('sub2053','sub205','Bibliothèque nationale','http://www.nlc-bnc.ca/','_blank','','','','','#F7F78F','#FFFFBF') 
				oCMenu.makeMenu('sub20530','sub2053','Page des enfants','http://www.nlc-bnc.ca/enfants/index-f.html','_blank','','','','','#F7F78F','#FFFFBF') 
			oCMenu.makeMenu('sub2054','sub205',"Centre des sciences de l'Ontario",'http://www.centredessciencesontario.ca/','_blank','','','','','#F7F78F','#FFFFBF') 
			oCMenu.makeMenu('sub2055','sub205','Civilisation.ca','http://www.civilization.ca/indexf.asp','_blank','','','','','#F7F78F','#FFFFBF') 
				oCMenu.makeMenu('sub20550','sub2055','Musée canadien des enfants','http://www.civilization.ca/mce_ccm/mce_ccmf.asp','_blank','','','','','#F7F78F','#FFFFBF') 
			oCMenu.makeMenu('sub2056','sub205','Musée des beaux-arts du Canada','http://national.gallery.ca/french/default.htm','_blank','','','','','#F7F78F','#FFFFBF') 
			oCMenu.makeMenu('sub2057','sub205','Musée royal de l&#039;Ontario','http://www.rom.on.ca/','_blank','','','','','#F7F78F','#FFFFBF') 
				oCMenu.makeMenu('sub20570','sub2057','ROM Kids','http://www.rom.on.ca/explore/kids.php','_blank','','','','','#F7F78F','#FFFFBF') 
		oCMenu.makeMenu('sub206','sub20','Office national du film','http://www.nfb.ca/f/index.html','_blank','','','','','#F7F78F','#FFFFBF') 
			oCMenu.makeMenu('sub2060','sub206','ONF jeunesse/NFB Kids','http://nfbkids.ca/jeunesse/index.html','_blank','','','','','#F7F78F','#FFFFBF') 
			oCMenu.makeMenu('sub2061','sub206','Médiasphère','http://mediasphere.onf.ca/F/index.epl','_blank','','','','','#F7F78F','#FFFFBF') 
		oCMenu.makeMenu('sub207','sub20','Ontario','','','','','','','#F7F78F','#FFFFBF') 
			oCMenu.makeMenu('sub2070','sub207','Le coin des jeunes ...','http://www.kids.premier.gov.on.ca/french/','_blank','','','','','#F7F78F','#FFFFBF') 
			oCMenu.makeMenu('sub2071','sub207',"Le gouvernement de l'Ontario",'http://www.gov.on.ca/MBS/french/','_blank','','','','','#F7F78F','#FFFFBF') 
		oCMenu.makeMenu('sub208','sub20','Radio et télévision','','','','','','','#F7F78F','#FFFFBF') 
			oCMenu.makeMenu('sub2081','sub208','Radio-Canada Jeunesse','http://www.radio-canada.ca/jeunesse/','_blank','','','','','#F7F78F','#FFFFBF') 
			oCMenu.makeMenu('sub2083','sub208',"Sac d'école de TFO",'http://tfo.org/education/eleves/','_blank','','','','','#F7F78F','#FFFFBF')
			oCMenu.makeMenu('sub2085','sub208','TVO Kids','http://www.tvokids.com/','_blank','','','','','#F7F78F','#FFFFBF')
		oCMenu.makeMenu('sub20B','sub20','Schoolnet','http://www.schoolnet.ca/','_blank','','','','','#F7F78F','#FFFFBF')
			oCMenu.makeMenu('sub20B1','sub20B','Rescol à la Source','http://www.schoolnet.ca/alasource/f/accueil/index.asp','_blank','','','','','#F7F78F','#FFFFBF')
		oCMenu.makeMenu('sub20D','sub20','David Suzuki Foundation','http://www.davidsuzuki.org/','_blank','','','','','#F7F78F','#FFFFBF')
			oCMenu.makeMenu('sub20D0','sub20D','Nature Challenge for Kids','http://www.davidsuzuki.org/kids/','_blank','','','','','#F7F78F','#FFFFBF')
		oCMenu.makeMenu('sub20E','sub20','Traduction automatique','','','','','','','#F7F78F','#FFFFBF')
			oCMenu.makeMenu('sub20E0','sub20E','AltaVista Babel Fish','http://world.altavista.com/','_blank','','','','','#F7F78F','#FFFFBF')
			oCMenu.makeMenu('sub20E1','sub20E','Free Translation','http://www.freetranslation.com/','_blank','','','','','#F7F78F','#FFFFBF')
	oCMenu.makeMenu('sub21','top2','pour grenouilles','','','','','','','#F7F78F','#FFFFBF') 
		oCMenu.makeMenu('sub210','sub21','EQAO','http://www.eqao.com/','_blank','','','','','#F7F78F','#FFFFBF')
			oCMenu.makeMenu('sub2100','sub210','School Improvement Planning','http://www.eqao.com/eqao/home_page/pdf_e/02/02P008e.pdf','_blank','','','','','#F7F78F','#FFFFBF')
		oCMenu.makeMenu('sub211','sub21','Federations & Associations','','','','','','','#F7F78F','#FFFFBF')
			oCMenu.makeMenu('sub2111','sub211','ETFO','http://www.etfo.on.ca','_blank','','','','','#F7F78F','#FFFFBF')
				oCMenu.makeMenu('sub21110','sub2111','ETFO Halton','http://www.etfohalton.on.ca','_blank','','','','','#F7F78F','#FFFFBF')
			oCMenu.makeMenu('sub2113','sub211','OSSTF/FEESO','http://www.osstf.on.ca/','_blank','','','','','#F7F78F','#FFFFBF')
			oCMenu.makeMenu('sub2115','sub211','Halton EAs (HDEAA)','http://hdeaa.com/news.asp','_blank','','','','','#F7F78F','#FFFFBF')
		oCMenu.makeMenu('sub212','sub21','Kids 4 Kids','http://www.kids4kids1.com','_blank','','','','','#F7F78F','#FFFFBF')
		oCMenu.makeMenu('sub213','sub21','Librairie Champlain','http://www.champlainbooks.com','_blank','','','','','#F7F78F','#FFFFBF')
		oCMenu.makeMenu('sub214','sub21','Ministry of Ed','http://www.edu.gov.on.ca/eng/welcome.html','_blank','','','','','#F7F78F','#FFFFBF')
			oCMenu.makeMenu('sub2140','sub214','Elementary Curriculum','http://www.edu.gov.on.ca/eng/document/curricul/elemcurric.html','_blank','','','','','#F7F78F','#FFFFBF')
			oCMenu.makeMenu('sub2142','sub214','Ontario Parent Council','http://www.ontarioparentcouncil.org/','_blank','','','','','#F7F78F','#FFFFBF') 
				oCMenu.makeMenu('sub21420','sub2142','School Improvement Planning','http://www.ontarioparentcouncil.org/parent_to_parent/default.asp?load=improved_planning','_blank','','','','','#F7F78F','#FFFFBF') 
			oCMenu.makeMenu('sub2143','sub214','School Councils: A Guide ...','http://www.edu.gov.on.ca/eng/general/elemsec/council/guide.html','_blank','','','','','#F7F78F','#FFFFBF')
			oCMenu.makeMenu('sub2144','sub214','Secondary Curriculum','http://www.edu.gov.on.ca/eng/document/curricul/seccurric.html','_blank','','','','','#F7F78F','#FFFFBF')
			oCMenu.makeMenu('sub2146','sub214','Student Focused Funding','http://www.edu.gov.on.ca/eng/funding/fund0304.html','_blank','','','','','#F7F78F','#FFFFBF')
		oCMenu.makeMenu('sub216','sub21','National Film Board','http://www.nfb.ca/E/','_blank','','','','','#F7F78F','#FFFFBF')
//		oCMenu.makeMenu('sub217','sub21','OECA School Council Hub','http://osc.oeca.org/','_blank','','','','','#F7F78F','#FFFFBF') 
		oCMenu.makeMenu('sub218','sub21','Home & School (OFHSA)','http://www.ofhsa.on.ca/','_blank','','','','','#F7F78F','#FFFFBF') 
		oCMenu.makeMenu('sub21A','sub21','People for Education','http://www.peopleforeducation.com/','_blank','','','','','#F7F78F','#FFFFBF')
			oCMenu.makeMenu('sub21A0','sub21A','Web Links','http://www.peopleforeducation.com/links/links.html','_blank','','','','','#F7F78F','#FFFFBF')
		oCMenu.makeMenu('sub21B','sub21','Project Gutenberg','http://www.gutenberg.org/','_blank','','','','','#F7F78F','#FFFFBF')
		oCMenu.makeMenu('sub21C','sub21','Public Citzen (USA)','http://www.citizen.org','_blank','','','','','#F7F78F','#FFFFBF')
			oCMenu.makeMenu('sub21C1','sub21C','THE MEATRIX','http://www.themeatrix.com/','_blank','','','','','#F7F78F','#FFFFBF')
			oCMenu.makeMenu('sub21C3','sub21C','Safe School Lunches','http://www.citizen.org/cmep/foodsafety/food_irrad/schoollunch/','_blank','','','','','#F7F78F','#FFFFBF')
		oCMenu.makeMenu('sub21D','sub21','Schoolnet','http://www.schoolnet.ca/','_blank','','','','','#F7F78F','#FFFFBF')
			oCMenu.makeMenu('sub21D1','sub21D','Grassroots Project','http://www.schoolnet.ca/grassroots/e/home/index.asp','_blank','','','','','#F7F78F','#FFFFBF')
		oCMenu.makeMenu('sub21E','sub21','Translation','','','','','','','#F7F78F','#FFFFBF')
			oCMenu.makeMenu('sub21E0','sub21E','AltaVista Babel Fish','http://world.altavista.com/','_blank','','','','','#F7F78F','#FFFFBF')
			oCMenu.makeMenu('sub21E1','sub21E','Free Translation','http://www.freetranslation.com/','_blank','','','','','#F7F78F','#FFFFBF')
		oCMenu.makeMenu('sub21F','sub21','Underground Grammarian','http://www.sourcetext.com/grammarian','_blank','','','','','#F7F78F','#FFFFBF')
			oCMenu.makeMenu('sub21F0','sub21F','The Graves of Academe','http://www.sourcetext.com/grammarian/graves-of-academe','_blank','','','','','#F7F78F','#FFFFBF')
 
oCMenu.makeMenu('top3','','Our Community','','','','','','','#B7F7B7','#E7FFE7')
	oCMenu.makeMenu('sub30','top3','West Oakville Schools','http://wofos.vrooman.org','_blank','','','','','#B7F7B7','#E7FFE7')
	oCMenu.makeMenu('sub31','top3','School Closures','','','','','','','#B7F7B7','#E7FFE7') 
		oCMenu.makeMenu('sub310','sub31','PE13 (Southwest Oakville)','http://pgsc.vrooman.org/pgipe13sccs.htm','_blank','','','','','#B7F7B7','#E7FFE7') 
		oCMenu.makeMenu('sub311','sub31','QE Park Closure 2001','http://pgsc.vrooman.org/pgiqeptrans.htm','_blank','','','','','#B7F7B7','#E7FFE7') 
		oCMenu.makeMenu('sub312','sub31','CARE (Ryerson, Burlington)','http://home.cogeco.ca/~ryersonpublic/','_blank','','','','','#B7F7B7','#E7FFE7') 
		oCMenu.makeMenu('sub313','sub31','SMART (Milton)','http://www.socius.on.ca/smartpages/newinfopate.html','_blank','','','','','#B7F7B7','#E7FFE7') 
			oCMenu.makeMenu('sub3130','sub313','FI Delegation 8-Oct-02','http://www.socius.on.ca/smartpages/delesandra.html','_blank','','','','','#B7F7B7','#E7FFE7') 
	oCMenu.makeMenu('sub32','top3','Town of Oakville','http://www.oakville.ca','_blank','','','','','#B7F7B7','#E7FFE7') 
		oCMenu.makeMenu('sub320','sub32','2003 Election Candidates','http://www.oakville.ca/Residents/res_registered_candidates.htm','_blank','','','','','#B7F7B7','#E7FFE7') 
	oCMenu.makeMenu('sub33','top3','Oakville Beaver','http://www.haltonsearch.com/hr/ob/','_blank','','','','','#B7F7B7','#E7FFE7') 
		oCMenu.makeMenu('sub331','sub33','HaltonSearch.com Forums','http://info.metroland.com/php/phpbb2_hr/viewforum.php?f=1&sid=66f46829fb69ee84ca276a4b48ace8e0','_blank','','','','','#B7F7B7','#E7FFE7') 
	oCMenu.makeMenu('sub34','top3','Oakville Green','http://www.oakvillegreen.com/','_blank','','','','','#B7F7B7','#E7FFE7') 
	oCMenu.makeMenu('sub35','top3','Oakville Public Library','http://www.opl.on.ca/','_blank','','','','','#B7F7B7','#E7FFE7') 
	oCMenu.makeMenu('sub36','top3','Oakville YMCA','http://www.cityparent.com/ymca/','_blank','','','','','#B7F7B7','#E7FFE7') 
	oCMenu.makeMenu('sub38','top3','Region of Halton','http://www.region.halton.on.ca/','_blank','','','','','#B7F7B7','#E7FFE7') 
		oCMenu.makeMenu('sub380','sub38','City of Burlington','http://www.burlington.ca/','_blank','','','','','#B7F7B7','#E7FFE7') 
		oCMenu.makeMenu('sub381','sub38','Town of Halton Hills','http://www.haltonhills.ca/','_blank','','','','','#B7F7B7','#E7FFE7') 
		oCMenu.makeMenu('sub382','sub38','Town of Milton','http://www.milton.ca/','_blank','','','','','#B7F7B7','#E7FFE7') 
	oCMenu.makeMenu('sub39','top3','Halton Regional Police','http://www.hrps.on.ca/index.asp','_blank','','','','','#B7F7B7','#E7FFE7') 
 
oCMenu.makeMenu('top4','','Halton DSB','http://www.hdsb.ca','_blank','','','','','#BFD7FF','#DDEEFF')
	oCMenu.makeMenu('sub41','top4','West Oakville Schools','','','','','','','#BFD7FF','#DDEEFF')
		oCMenu.makeMenu('sub410','sub41','Abbey Lane PS (K-8)','http://abb.hdsb.ca/','_blank','','','','','#BFD7FF','#DDEEFF')
		oCMenu.makeMenu('sub411','sub41','Abbey Park HS (9-12)','http://aph.hdsb.ca/','_blank','','','','','#BFD7FF','#DDEEFF')
		oCMenu.makeMenu('sub412','sub41','Brookdale PS (K-8)','http://brd.hdsb.ca/','_blank','','','','','#BFD7FF','#DDEEFF')
		oCMenu.makeMenu('sub413','sub41','Captain R. Wilson PS (K-8)','http://crw.hdsb.ca/','_blank','','','','','#BFD7FF','#DDEEFF')
		oCMenu.makeMenu('sub414','sub41','Eastview PS (K-8, F 7-8)','http://eas.hdsb.ca/','_blank','','','','','#BFD7FF','#DDEEFF')
		oCMenu.makeMenu('sub415','sub41','Gladys Speers PS (K-6)','http://gla.hdsb.ca/','_blank','','','','','#BFD7FF','#DDEEFF')
		oCMenu.makeMenu('sub416','sub41','Heritage Glen PS (K-8)','http://hgp.hdsb.ca/','_blank','','','','','#BFD7FF','#DDEEFF')
		oCMenu.makeMenu('sub417','sub41','Oakwood PS (K-5)','http://oak.hdsb.ca/','_blank','','','','','#BFD7FF','#DDEEFF')
		oCMenu.makeMenu('sub418','sub41','Pilgrim Wood PS (K-8)','http://pwe.hdsb.ca/','_blank','','','','','#BFD7FF','#DDEEFF')
		oCMenu.makeMenu('sub419','sub41','Pine Grove PS (F 1-6)','http://pin.hdsb.ca','_blank','','','','','#BFD7FF','#DDEEFF') 
		oCMenu.makeMenu('sub41A','sub41','TA Blakelock HS (9-12, F 9-12)','http://tab.hdsb.ca/','_blank','','','','','#BFD7FF','#DDEEFF')
		oCMenu.makeMenu('sub41B','sub41','WH Morden PS (K-8)','http://whm.hdsb.ca/','_blank','','','','','#BFD7FF','#DDEEFF')
		oCMenu.makeMenu('sub41C','sub41','West Oak PS (K-8)','http://wes.hdsb.ca/','_blank','','','','','#BFD7FF','#DDEEFF')
	oCMenu.makeMenu('sub42','top4','Immersion Schools','','','','','','','#BFD7FF','#DDEEFF')
		oCMenu.makeMenu('sub420','sub42','Oakville','','','','','','','#BFD7FF','#DDEEFF')
			oCMenu.makeMenu('sub4201','sub420','EJ James PS (DT 6-8)','http://ejj.hdsb.ca/','_blank','','','','','#BFD7FF','#DDEEFF')
			oCMenu.makeMenu('sub4202','sub420','Eastview PS (K-8, F 7-8)','http://eas.hdsb.ca/','_blank','','','','','#BFD7FF','#DDEEFF')
			oCMenu.makeMenu('sub4203','sub420','Iroquois Ridge HS (DT 9-12)','http://irs.hdsb.ca','_blank','','','','','#BFD7FF','#DDEEFF') 
			oCMenu.makeMenu('sub4204','sub420','Linbrook PS (K, F 1-5)','http://lin.hdsb.ca/','_blank','','','','','#BFD7FF','#DDEEFF')
			oCMenu.makeMenu('sub4205','sub420','Montclair PS (6-8, F 7-8)','http://mon.hdsb.ca/','_blank','','','','','#BFD7FF','#DDEEFF')
			oCMenu.makeMenu('sub4206','sub420','Oakville Trafalgar HS (DT 9-12)','http://oth.hdsb.ca','_blank','','','','','#BFD7FF','#DDEEFF') 
			oCMenu.makeMenu('sub4207','sub420','Pine Grove PS (F 1-6)','http://pin.hdsb.ca','_blank','','','','','#BFD7FF','#DDEEFF') 
			oCMenu.makeMenu('sub4209','sub420','Sunningdale PS (F 1-6)','http://sun.hdsb.ca/','_blank','','','','','#BFD7FF','#DDEEFF')
			oCMenu.makeMenu('sub420A','sub420','TA Blakelock HS (DT 9-12)','http://tab.hdsb.ca/','_blank','','','','','#BFD7FF','#DDEEFF')
			oCMenu.makeMenu('sub420B','sub420','White Oaks SS (DT 9-12)','http://wos.hdsb.ca/','_blank','','','','','#BFD7FF','#DDEEFF')
		oCMenu.makeMenu('sub421','sub42','Burlington','','','','','','','#BFD7FF','#DDEEFF')
		oCMenu.makeMenu('sub422','sub42','Milton','','','','','','','#BFD7FF','#DDEEFF')
		oCMenu.makeMenu('sub423','sub42','Halton Hills','','','','','','','#BFD7FF','#DDEEFF')
	oCMenu.makeMenu('sub44','top4','School Closures','','','','','','','#BFD7FF','#DDEEFF')
		oCMenu.makeMenu('sub440','sub44','PE13 (Southwest Oakville)','http://www.haltondsb.on.ca/main.asp?sMenuID=489&amp;sParentID=134&amp;PageID=321','_blank','','','','','#BFD7FF','#DDEEFF')
		oCMenu.makeMenu('sub441','sub44','PE16 (Northeast Oakville)','http://www.hdsb.ca/main.asp?sMenuID=490&sParentID=134&PageID=326','_blank','','','','','#BFD7FF','#DDEEFF')
		oCMenu.makeMenu('sub442','sub44','Ryerson (Burlington)','http://www.hdsb.ca/main.asp?sMenuID=488&sParentID=134&PageID=322','_blank','','','','','#BFD7FF','#DDEEFF')
		oCMenu.makeMenu('sub443','sub44','Martin Street (Milton)','http://www.hdsb.ca/main.asp?sMenuID=432&sParentID=134&PageID=287','_blank','','','','','#BFD7FF','#DDEEFF')
	oCMenu.makeMenu('sub47','top4','Supervisory Contacts','http://www.haltondsb.on.ca/main.asp?sMenuID=307&sParentID=64&PageID=82','_blank','','','','','#BFD7FF','#DDEEFF')
	oCMenu.makeMenu('sub48','top4','Trustee Contacts','http://www.hdsb.ca/main.asp?sMenuID=452&sParentID=64&PageID=29','_blank','','','','','#BFD7FF','#DDEEFF')
	oCMenu.makeMenu('sub49','top4','School Year Calendar',"javascript:popup('art030414e.htm','popup','scrollbars=yes,resizable=yes,width=640,height=480')",'','','','','','#BFD7FF','#DDEEFF')
	oCMenu.makeMenu('sub4A','top4','HDSB CHATT Login','http://chatt.hdsb.ca/login/','_blank','','','','','#BFD7FF','#DDEEFF')
	oCMenu.makeMenu('sub4C','top4','HDSB CHATT Directory','http://chatt.hdsb.ca/directory/','_blank','','','','','#BFD7FF','#DDEEFF')

//Leave these two lines! Making the styles and then constructing the menu
oCMenu.makeStyle(); 
oCMenu.construct();			

