// JavaScript Document

function spotlight(picture,title,subtitle,p1,linkTarget,linkName) {
	this.picture = picture;
	this.title = title;
	this.subtitle  = subtitle;
	this.p1 = p1;
	this.linkTarget = linkTarget;
	this.linkName = linkName;

} 

istObject = new spotlight("ist.jpg",
						  "Instructional Systems Technology",
						  "Graduate Certificate",
						  "Nationally recognized program designed for teachers and training and development professionals pursuing instructional design credentials.",
						  "programs/IST/default.aspx",
						  "More Information"
						);
mistObject = new spotlight("ist.jpg",
						  "Instructional Systems Technology",
						  "M.Ed.",
						  "Nationally recognized program designed for teachers and training and development professionals pursuing instructional design credentials.",
						  "programs/MIST/default.aspx",
						  "More Information"
						);
aigObject = new spotlight("aig.jpg",
							"Academically or Intellectually Gifted",
                            "Graduate Certificate",
							"This 12-credit-hour, four-course add-on teacher licensure program is for currently licensed teachers and meets North Carolina Department of Public Instruction (DPI) requirements for AIG add-on teacher licensure.",
							"programs/AIG/Program.aspx",
							"More Information"
						);
msemObject = new spotlight("msem.jpg",
							"Master of Science in Engineering Management",
                            "",
							"This 30-credit-hour degree program, a technical alternative to the MBA, prepares graduates with cutting-edge technical competence; management skills to form and manage high performance teams; and, the ability to manage business and technological operations.",
							"programs/MSEM/Default.aspx",
							"More Information"
						);						
						
k12acObject = new spotlight("k12ac.jpg",
							"Special Education (K-12): Adapted Curriculum",
                            "Graduate Certificate in Teaching",
							"The 27-hour program prepares students for initial teacher licensure to work with moderately-to-severely disabled K-12 students.  The program meets North Carolina Department of Public Instruction (DPI) requirements for the Standard Professional I license in Special Education: Adapted Curriculum.",
							"programs/ac/Default.aspx",
							"More Information"
						);						
k12gc1Object = new spotlight("k12gc.jpg",
							"Special Education (K-12): General Curriculum",
                            "Graduate Certificate",
							"This program prepares students for teacher licensure to work with mildly disabled K-12 students.  The program meets North Carolina Department of Public Instruction (DPI) requirements for a specific licensure level in Special Education: General Curriculum.",
							"programs/gc/Default.aspx",
							"More Information"
						);	
k12gc2Object = new spotlight("k12gc.jpg",
							"Special Education (K-12): General Curriculum",
                            "Master of Arts in Teaching",
							"This program prepares students for teacher licensure to work with mildly disabled K-12 students.  The program meets North Carolina Department of Public Instruction (DPI) requirements for a specific licensure level in Special Education: General Curriculum.",
							"programs/mat/Default.aspx",
							"More Information"
						);							
mgselopObject = new spotlight("mgselop.jpg",
							"Middle Grades & Secondary Education Licensure Online Program",
                            "Graduate Certificate in Teaching",
							"This 18-credit-hour program is designed to meet North Carolina licensure needs of lateral entry teachers as well as those seeking a career change to teaching. The Graduate Certificate in Teaching content areas are English, Math, Social Studies, and Science.  For those pursuing licensure through the Master of Arts in Teaching (Math, Social Studies and Science), at least 30 credit-hours (of the required 39) are in an online format.",
							"programs/mdsk/Default.aspx",
							"More Information"
						);							
pmgcscObject = new spotlight("pmgcsc.jpg",
							"Post-Masters Graduate Certificate in School Counseling",
                            "",
							"Beginning each summer, counselors form CACREP-accredited masters programs have the opportunity to take 12-credit hours in School Counseling. This online program is completed in 12 months.",
							"programs/CSLG/Default.aspx",
							"More Information"
						);		
				
msnnaObject = new spotlight("msnna.jpg",
							"Master of Science in Nursing: Nursing Administration",
                            "",
							"Preparing nurses for advanced practice in roles such as Nurse Executive, Nurse Manager, and Quality Improvement Manger, this online program is 36-credit hours and can be completed part-time.",
							"programs/MSNa/Default.aspx",
							"More Information"
						);							
msncphObject = new spotlight("msncph.jpg",
							"Master of Science in Nursing: Community/Public Health",
                            "",
							"Interested in assessing communities, identifying high-risk populations and developing culturally sensitive community-based nursing services? This 38-credit hour online can be completed part-time.",
							"programs/MSNcph/Default.aspx",
							"More Information"
						);						
msnneObject = new spotlight("msnne.jpg",
							"Master of Science in Nursing: Nursing Education",
                            "",
							"This concentration prepares nurses for advanced practice as Nurse Educators and meets the North Carolina Board of Nursing requirements. The 39-credit hours and can be completed part-time.",
							"programs/MSNe/Default.aspx",
							"More Information"
						);							
gcnaObject = new spotlight("gcna.jpg",
							"Graduate Certificate: Nursing Administration",
                            "",
							"Enhance your administrative skills and gain additional knowledge in managing groups in this online 12-credit hour program. ",
							"programs/GCNA/Default.aspx",
							"More Information"
						);							
gcneObject = new spotlight("gcne.jpg",
							"Graduate Certificate: Nursing Education",
                            "",
							"An online certificate designed for BSN and MSN nurses desiring to become educational leaders in academic and clinical settings. The certificate consists of 12-credit hours and is completed in 12 months.",
							"programs/GCNE/Default.aspx",
							"More Information"
						);							
rbcpObject = new spotlight("rbcp.jpg",
							"RN to BSN Completion Program",
                            "",
							"An online program usually completed in 12 months. Students apply in the spring to begin online classes each fall.",
							"programs/RNBSN/Default.aspx",
							"More Information"
						);
											
spotlightArray = new Array(istObject,mistObject,aigObject,gcnaObject,gcneObject,k12acObject,k12gc1Object,k12gc2Object,mgselopObject,msemObject,msncphObject,msnnaObject,pmgcscObject,rbcpObject,msnneObject);
randomObject = spotlightArray[Math.round(((spotlightArray.length-1) * Math.random()))];