// JavaScript Document
var SolutionHTML = new Array();
		SolutionHTML[0] = "No Data...";
		SolutionHTML[1] = "Utilizing every opportunity to understand our clients, candidates and their particular situation via survey data and the effective interviewing techniques.";
		SolutionHTML[2] = "Utilizing a proven  methodology, We believe a strong methodology leads to the best results for our clients and candidates";
		SolutionHTML[3] = "We Understand people. We understand the importance of personality and culture fit in addition to skill fit. We believe that people are the lifeblood of a project adnd that when they work well together projects are more effective and productive";
		SolutionHTML[4] = "We are dedicated to learning more about our clients and candidates with every interaction. We listen to their needs, goals and motivations. We use this data daily to improve our service offering.";
		SolutionHTML[5] = "Newage Clinical meets your expectations because we hold ourselves to higher standards that most recruiting companies. We strive to meet everyclients adn candidates expectations. We are strait forward and honest in our dealings";
		SolutionHTML[6] = "Newage Clinical understands that lost time equals lost productivity for your clinical projects. We untilize a methodology that allows for a timely response for both candidates and clients";
		SolutionHTML[7] = "Our recruiters enjoy their jobs, Our Team is passionate about building professional relationships with our consultants. We garner strategic relationships with Professionals who enjoy the opportunity to work for our Clients. We believe that job satisfaction enhances project success.";
		SolutionHTML[8] = "Understanding of our candidates career goals and how they it with our clients organizations";
			
		
		function viewContent (IntCase) {
			
			if ( (SolutionHTML.length-1<IntCase) ||  (IntCase<1) )
			IntCase = 0;
				
			if (IntCase == 1)	
			document.getElementById("poup_wrap").className = "poup_wrap_yw"
			
			if (IntCase == 2)	
			document.getElementById("poup_wrap").className = "poup_wrap_red"
			
			if (IntCase == 3)	
			document.getElementById("poup_wrap").className = "poup_wrap_blue"
			
			if (IntCase == 4)	
			document.getElementById("poup_wrap").className = "poup_wrap_green"
			
			if (IntCase == 5)	
			document.getElementById("poup_wrap").className = "poup_wrap_brown"
			
			if (IntCase == 6)	
			document.getElementById("poup_wrap").className = "poup_wrap_purple"
			
			if (IntCase == 7)	
			document.getElementById("poup_wrap").className = "poup_wrap_ltgreen"
			
			if (IntCase == 8)	
			document.getElementById("poup_wrap").className = "poup_wrap_ltblue"
			
			
				
			document.getElementById("poup_wrap").style.display = "block";
			$("#poup_wrap").fadeIn("slow");
			document.getElementById("poup_content").innerHTML = SolutionHTML[IntCase];
		}
		
		function hideContent () {
			//document.getElementById("poup_wrap").style.display = "none";
			$("#poup_wrap").fadeOut("slow");
		}
		