/***
 *	CSTMenu.js
 **/

Ext.onReady(
	function()
	  {
//		Ext.BLANK_IMAGE_URL = 'http:/www.cstnet.org/images/s.gif';

		var peopleSubmenu = new Ext.menu.Menu({
			id: 'peopleSubmenu',
			items: [
				{
					text: 'CST Staff',
					href: 'about-staff.htm'
				},
				{
					text: 'Board of Directors',
					href: 'about-directors.htm'
				},
				{
					text: 'Board of Advisors',
					href: 'about-advisors.htm'
				},
				{
					text: 'Interns and Volunteers',
					href: 'about-interns.htm'
				},
				{
					text: 'Tenth Anniversary Committee',
					href: 'tenthanniversary-committee.htm'
				}
			  ]});

		var aboutMenu = new Ext.menu.Menu({
			id: 'aboutMenu',
			items: [
				{
					text: "Services",
					href: 'services.htm'
				},
				{
					text: "People",
					menu: peopleSubmenu
				},
				{
					text: "Strategic Plan",
					href: "strategic-plan.htm"
				},
				{
					text: 'Accreditations',
					href: 'about-accreditations.htm'
				},
				{
					text: 'Funding',
					href: 'about-funding.htm'
				},
				{
					text: 'Needs Assessment',
					href: 'pdfs/NeedsAssessment.pdf',
					hrefTarget: "_blank"
				}
				  ]
			});

			var clientsMenu = new Ext.menu.Menu({
				id: 'clientsMenu',
				items: [
					{
						text: "Immigration",
						href: "resources-citizenship.htm"
					},
					{
						text: 'Upcoming Events',
						xtype: 'menu',
						items:
						  [
						   {
							   text: 'North Texas',
							   href: 'north-texas-calendar.htm'
						   },
						   {
							   text: 'Central Texas',
							   href: 'central-texas-calendar.htm'
						   },
						   {
							   text: 'Gulf Coast',
							   href: 'gulf-coast-calendar.htm'
						   }
					    ]
					},
					{
						text: 'Slideshows',
						href: "slideshow.htm"
					}
					  ]
			  });
			
			var caregiversMenu = new Ext.menu.Menu({
				id: 'caregiversMenu',
				items: [
					{
						text: "Caregiver's Corner",
						href: "caregivers-corner.htm"
					},
					{
						text: "Referral Forms",
						href: "referral-forms.htm"
					} 
					  ]
			  });
			
			var resourcesMenu = new Ext.menu.Menu({
				id: 'resourcesMenu',
				items: [
					{
						text: "Current News",
						href: "news-current.htm"
					},
					{
						text: "News Archive",
						href: "news-archive.htm"
					},
					{
						text: "Training",
						href: "resources-network-training.htm"
					}
					  ]
			  });

			var joinUsMenu = new Ext.menu.Menu({
				id: 'joinUsMenu',
				items: [
					{
						text: "Volunteering",
						href: "joinus-volunteers.htm"
					},
					{
						text: "Donate",
						iconCls: 'bmenu',
						handler: function()
							{ 
								window.open("https://secure.acceptiva.com/?cst=35080e");
							}
					}
						]
				});
						
			var tb = new Ext.Toolbar(
			  {
				height: 35,
				items:
				  [
						{
							text: "Home",
							iconCls: "bmenu",
							handler: function() { location.href="index.htm"; }
						},
						{
							text: 'About',
							iconCls: 'bmenu',
							menu: aboutMenu
						},
						{
							text: 'Clients',
							iconCls: 'bmenu',
							menu: clientsMenu
						},
						{
							text: 'Caregivers',
							iconCls: 'bmenu',
							menu: caregiversMenu
						},
						{
							text: 'Resources',
							iconCls: 'bmenu',
							menu: resourcesMenu
						},
						{
							text: "Join Us",
							iconCls: "bmenu",
							menu: joinUsMenu
						},
						{
							text: "Contact Us",
							iconCls: "bmenu",
							handler: function() { location.href = "contact.htm"; }
						}
				  ]
			  });
			tb.render("cstmenu");
	});
