var projects = [		
						
						
						
						//HighBeam Research
					{	"clientName"         :  "HighBeam Research",
						"projectImage"       :  "hbr.jpg",
						"projectDescription" :  'HighBeam Research is an online reference tool. The site is undergoing redevelopment, and this was the first page to be updated. Heavy user interaction and visual design was required in order to make a complex set of features and tools intuitive and easy to use.' },

						//Area 16
					{	"clientName"         :  "Area 16",
				 		"projectImage"       :  "area16.jpg",
				 		"projectDescription" :  "Area 16 is a division of Chicago Public Schools. The project required interface design, visual design, development, and identity." },

						//Todd M. Haley
					{	"clientName"         :  "Todd M. Haley",
				 		"projectImage"       :  "haley.jpg",
				 		"projectDescription" :  "Todd Haley is a Chicago based interior designer. His project required a sleek interface, visual design, development, and identity." },
										
						//Backstories
					{	"clientName"         :  "Backstories by HighBeam Research",
						"projectImage"       :  "backstories.jpg",
						"projectDescription" :  "Backstories is designed as a sub-product of HighBeam Research. The project required deep social media integration, an approachable and friendly visual design, and WordPress template development." },
	
					/*	//Easy coffee
					{	"clientName"         :  "Easy Coffee",
				 		"projectImage"       :  "easycoffee.jpg",
				 		"projectDescription" :  "Lorem ipsum doler sit amet." },
				 	*/												 		
					/*	//Hyperagency
					{	"clientName"         :  "Hyperagency",
				 		"projectImage"       :  "hyperagency.jpg",
				 		"projectDescription" :  "Hyperagency is a start-up firm who required a brand to be built from scratch. The project required interface design, visual design, development, and identity." },
					*/
						//Yoga by Bun
					{	"clientName"         :  "Yoga by Bun",
				 		"projectImage"       :  "yogabybun.jpg",
				 		"projectDescription" :  "Yoga by Bun required a simple, approachable and friendly aesthetic. The project required visual design, development, and identity." },
				
						//HighBeam Business
					{	"clientName"         :  "HighBeam Business",
				 		"projectImage"       :  "hbb.jpg",
				 		"projectDescription" :  "HighBeam Business is a full-featured business and industry research tool. I contributed to the project’s extensive interface design, working to make complex search tools simple and intuitive. I also contributed to the site’s visual design and front-end development." },

] // End projects


$(document).ready(function() {

	for (var x in projects) {

		//add project names to DOM
		$("#description-container").append("<div class=\"description projectNum" + x + "\"><h1>" + projects[x].clientName + "</h1><p>" + projects[x].projectDescription + "</p></div>");
		
		//add project images to DOM
		$("#project-image-placeholder").append("<div class=\"image-container\" slide=\"" + x + "\"><img src=\"lib/images/projects/" + projects[x].projectImage + "\"/></div>");

		//add bubble controls to DOM
		$("#slider-controls").append("<div slideSelector=\"" + x + "\" class=\"bubble\"></div>");
	}
	
}); //doc ready
