// Menu tree for the menus.
//
// Look for HV Menu at http://www.dynamicdrive.com/dynamicindex1/hvmenu/index.htm for documentation 
//
//	MenuX=new Array(Text to show, Link, background image (optional), number of sub elements, height, width,
//												      BgColor,BgHiColor,FontColor,FontHiColor,BorderColor);
//	For rollover images set "Text to show" to:  "rollover:Image1.jpg:Image2.jpg"
//  Can also be used to execute javascript statements. For instance when you want the link to open in the top 
//    window use "javascript:top.document.location.href='Link.htm';"
//  or to open in a new window:
//    Menu9=new Array("TeacherWeb","javascript:window.open('http://www.teacherweb.com/CO/KinardJuniorHigh/grade7info/index.html')","",0);
//  Height and width must be set for each first menu (ending in _1), all others may be 0
//  Use Link of "" for menus that have submenus if you don't want them to launch

var menuHeight = 20;			// Keep same height for all menus, adjust with font size
var menuHeight2x = menuHeight * 1.85
var mainMenuWidth = 100;		// Width for main left menu, should be same as template's left table cell width

// handy way to get the javascript to open a new window
function win(url, target) {
	return("javascript:window.open('" + url + "', '" + target + "')")
}
function newWin(url) {
	return win(url, "_blank")
}
function schoolWebWin(url) {
	// always output to our same window
	// return win(url, "kinard")
	return newWin(url)
}

//
// All of our menus must be relative to /kinard/community (since that is where we publish), else
// if the current page is not in the root directory, links are broken.  Use this for
// local links.  If you move the site, you need to change this
//
function loc(relUrl) {
	return "/kinard/community/" + relUrl;
}
function downloads(relUrl) {
	// Always open downloads in a new window
	return newWin("/kinard/downloads/" + relUrl);
}

var NoOffFirstLineMenus = 12;	// Number of first level items, listed at bottom
Menu1=new Array("Home / News","http://schoolweb.psdschools.org/kinard/community","",0,menuHeight,mainMenuWidth);
//Menu2=new Array("<img src='../images/teacherWebApple.gif' height='20' width='30' align='top'> Kinard Connection","http://www.teacherweb.com/CO/KinardJuniorHigh/grade7info/hf1.stm","",0,menuHeight2x,mainMenuWidth);
Menu2=new Array("Academics","","",6);
	Menu2_1=new Array("Homework",loc("homework.htm"),"",0,menuHeight,125);
	Menu2_2=new Array("Pinnacle / Grades",loc("pinnacleInternetViewer.htm"));
	Menu2_3=new Array("Homework Guidelines",loc("homeworkPolicy.htm"),"",0,menuHeight2x,125);
	Menu2_4=new Array("Teacher Directory & Class Web Pages","http://schoolweb.psdschools.org/kinard/bios/index.htm","",0,menuHeight2x);
	Menu2_5=new Array("Curriculum",loc("curriculum.htm"));
	Menu2_6=new Array("School Improvement Plan",loc("nov06archives/website SIP.pdf"),"",0,menuHeight2x);
Menu3=new Array("Athletics",loc("athletics.htm"),"",0);
Menu4=new Array("Clubs/Student Council",loc("clubs.htm"),"",0,menuHeight2x);
// Menu3=new Array("Activities","","",2);
//	Menu3_1=new Array("Athletics",loc("athletics.htm"),"",0,menuHeight,90);
//	Menu3_2=new Array("Clubs",loc("clubs.htm"));
Menu5=new Array("Calendar",loc("calendar.htm"));
Menu6=new Array("Weatherstation",newWin("http://schoolweb.psdschools.org/kinard/weather/"));
Menu7=new Array("Newsletters","http://schoolweb.psdschools.org/kinard/newsletters/index.htm","",0,menuHeight,130);
//Menu8=new Array("School Information","","",11,menuHeight2x);
Menu8=new Array("School Information","","",7,menuHeight2x);
	Menu8_1=new Array("Daily Schedule",loc("bellSchedule.htm"),"",0,menuHeight,130);
	//Menu8_2=new Array("Kinard History",loc("ParentHandbook.htm#HISTORY"));
	Menu8_2=new Array("Handbook",loc("../downloads/0708ParentHandbook.pdf"));
	//Menu8_4=new Array("Behavior Plan",loc("ParentHandbook.htm#BEHAVIOR_PLAN"));
	//Menu8_5=new Array("Academic Plan",loc("ParentHandbook.htm#ACADEMIC_PLAN"));
	Menu8_3=new Array("Staff Commitments",loc("staffCommitments.htm"));
	Menu8_4=new Array("FAQs",loc("faq.htm"));
//	Menu8_8=new Array("Enrollment",loc("enrollmentAndRegistration.htm"));
	Menu8_5=new Array("PSD Links","","",9);
		Menu8_5_1=new Array("Kinard Main Home Page","http://schoolweb.psdschools.org/kinard/","",0,menuHeight,160);
		Menu8_5_2=new Array("District Home Page",newWin("http://www.psdschools.org/"));
		Menu8_5_3=new Array("Lunch Menus",newWin("http://www.psdschools.org/services/foodfest/menus.aspx"));
		Menu8_5_4=new Array("Volunteer Application",newWin("http://www.psdschools.com/programs/partnership/volunteers.aspx"));
		Menu8_5_5=new Array("2007-2008 Calendar",newWin("http://www.psdschools.org/documentlibrary/downloads/Superintendent_Office/Calendars/School_Calendar_2007-2008.pdf"));
		Menu8_5_6=new Array("Calendars & Schedules",newWin("http://www.psdschools.org/psdinfo/calendars.aspx"));
		Menu8_5_7=new Array("Bus Schedule",newWin("http://www.psdschools.org/services/operations/transportation/busschedule.aspx"));
		Menu8_5_8=new Array("School Closures",newWin("http://www.psdschools.org/psdinfo/newsevents/index.aspx?newseventid=178"));
//Doesn't seem to exist in 2006 - G Georg		Menu7_9_9=new Array("School Choice Transportation Appl.",newWin("http://www.psdschools.org/documentlibrary/downloads/Transportation/School_Choice_Transportation_Application_2005-2006.pdf"),"",0,menuHeight2x);
		Menu8_5_9=new Array("PSD Mail",newWin("http://www.psdschools.org/mail/"));
	Menu8_6=new Array("Permission Form",loc("fieldTripActivityForm.htm"),"",0,menuHeight);
	Menu8_7=new Array("Floor Plan",loc("../images/Kinard Map.jpg"));
Menu9=new Array("Parent Partnership","","",4,menuHeight2x);
	Menu9_1=new Array("SBDMT",loc("sbdmt.htm"),"",0,menuHeight,90);
	Menu9_2=new Array("Parent Involvement",loc("parentInvolvement.htm"),"",0,menuHeight2x);
	Menu9_3=new Array("Volunteer Application",newWin("http://www.psdschools.com/programs/partnership/volunteers.aspx"),"",0,menuHeight2x);
	Menu9_4=new Array("Volunteer Opportunities",loc("volunteerOpportunities.htm"),"",0,menuHeight2x);
//	Menu8_5=new Array("Volunteer Calendars","","",2,menuHeight2x);
//		Menu8_5_1=new Array("Learning Center",downloads("learningCenterCalendars.pdf"),"",0,menuHeight,120);
//		Menu8_5_2=new Array("Classroom",downloads("volunteerCalendars.pdf"));
Menu10=new Array("Contact Us","","",5);
	Menu10_1=new Array("Map & Attendence","/kinard/front/contactKinardJH.htm","",0,menuHeight,125);
	Menu10_2=new Array("Directory & Class Web Pages","http://schoolweb.psdschools.org/kinard/bios/index.htm","",0,menuHeight2x);
	Menu10_3=new Array("Teacher Schedule",loc("../downloads/MasterSched-0708.pdf","",0,menuHeight));
	Menu10_4=new Array("Join E-Mail List",loc("emailListUpdates.htm","",0,menuHeight));
//	Menu9_3=new Array("Email Joe","mailto:jcuddemi@psdschools.org");
	Menu10_5=new Array("Email Kinard Webmaster","mailto:georg@cs.colostate.edu?subject=About%20Kinard%20Website","",0,menuHeight2x);
Menu11=new Array("Media Center",newWin("http://schoolweb.psdschools.org/kinard/media/index.htm"));
Menu12=new Array("Counseling",loc("../counseling/index.htm"),"",0);
