	function param2object(param){
		if(typeof param != "Object"){
			return eval(param);
		}else{
			return param;
		}
	}

	function LeftNavNode(pidStr, pparent, pdisplayStr, pbaseClassStr, pclassStr, purl){
		this.idStr=pidStr;
		this.parent=pparent;
		this.displayStr=pdisplayStr;
		this.classStr=pclassStr;
		this.baseClassStr=pbaseClassStr;
		this.url=purl;
		this.hierarchyStr;
		this.children = new Array();
		if((pparent != null) && (pparent != "")){
			var parentObj = param2object(pparent);
			parentObj.addChild(this.idStr);
			this.hierarchyStr = parentObj.getHierarchyStr() + ":"+this.idStr;
		}else{
			this.hierarchyStr = this.idStr;
		}
	}new LeftNavNode("","","","","");
	
	function proto_getHierarchyStr(){
		return this.hierarchyStr;
	}LeftNavNode.prototype.getHierarchyStr = proto_getHierarchyStr;

	function proto_getParentStr(){
		return this.parent;
	}LeftNavNode.prototype.getParentStr = proto_getParentStr;
	
	function proto_writeNode(){
		var displayStr = "none";
		if(this.parent == null){
			displayStr = "block";
		}else if(param2object(this.parent).parent == null){
			displayStr = "block";
		}
		
		// write current node
		if(this.classStr == "lnavheader"){
			current_root = this;
			//document.getElementById("leftNav").innerHTML = "";
			document.getElementById("leftNav").innerHTML = "<div id=\""+this.idStr+"\" style=\"display: "+ displayStr + ";\" class=\""+this.baseClassStr+" "+this.classStr+"\">"+this.displayStr+"<\/div>";
		}else{
			var onclickStr = "";
			if(typeof this.url != "undefined"){
				if(this.url != ""){
					onclickStr = " onclick=\""+this.idStr+".loadurl();\"";
				}
			}
			if(this.idStr.indexOf("_root") < 0){
				document.getElementById("leftNav").innerHTML = document.getElementById("leftNav").innerHTML + "<div id=\""+this.idStr+"\" style=\"display: "+ displayStr + ";\" class=\""+this.baseClassStr+" "+this.classStr+"\" onmouseover=\""+this.idStr+".highlight('over');\" onmouseout=\""+this.idStr+".highlight('out');\" onclick=\""+this.idStr+".showSubs();\">"+this.displayStr+"<\/div>";
			}else{
				document.getElementById("leftNav").innerHTML = "<div id=\""+this.idStr+"\" style=\"display: "+ displayStr + ";\" class=\""+this.baseClassStr+" "+this.classStr+"\" onmouseover=\""+this.idStr+".highlight('over');\" onmouseout=\""+this.idStr+".highlight('out');\" onclick=\""+this.idStr+".showSubs();\">"+this.displayStr+"<\/div>";
			}

		}
		// has children?
		if(this.children.length > 0){
			param2object(this.children[0]).writeNode();
		}
		// has siblings?
		if(this.parent != null){
			var nextNode = param2object(this.parent).nextChild(this.idStr);
			if(nextNode != null){
				nextNode.writeNode();
			}
		}
	}LeftNavNode.prototype.writeNode = proto_writeNode;
	
	function proto_nextChild(currChildIdStr){
		if(this.children.length > 0){
			for(i=0; i< this.children.length; i++){
				if(this.children[i] == currChildIdStr){
					if(typeof this.children[i + 1] != "undefined"){
						return param2object(this.children[i + 1]);
					}else{
						return null;
					}
				}
			}
		}
		return null;
	}LeftNavNode.prototype.nextChild = proto_nextChild
	
	function proto_addChild(child_ref){
		var current_length = (this.children).length;
		this.children[current_length] = child_ref;
		//alert("adding " + child_ref + " to " + this.idStr + ". " + this.children.length + " children.");
	}LeftNavNode.prototype.addChild = proto_addChild;

	function proto_highlight(type){
		if(this.idStr != selectedId){
			var tail = "";
			if(type == "over"){ tail = "over"; }
			document.getElementById(this.idStr).className = this.baseClassStr + " " + this.classStr + tail;
		}
	}LeftNavNode.prototype.highlight = proto_highlight;
	
	function proto_showSubs(){
		var closeNodesBelow = false;
		var openNodesBelow = false;
		var objToClose = null;
		// possibilities:
		// openLeftNav is blank. Set the node to be the openLeftNav and if it has children, reveal the children
		if(openLeftNav == ""){
			//alert("openLeftNav is blank.");
			openNodesBelow = true;
			openLeftNav = this.idStr;
		}
		// openLeftNav is an exact match for the item clicked. Close openLeftNav.
		else if(openLeftNav == this.idStr){
			//alert("openLeftNav is an exact match for the item clicked.");
			// does the node have a parent?
			var parentStr = this.parent;
			if(this.children.length > 0){
				//if ((parentStr != "") && (parentStr != null) && (parentStr != "root")){
				if ((parentStr != "") && (parentStr != null)){
					alert(parentStr.toString());
					if(parentStr.indexOf("_root") < 0){
						openLeftNav = parentStr;
					}else{
						openLeftNav = "";
					}
					closeNodesBelow = true;
				}else{
					openLeftNav = "";
					closeNodesBelow = false;
				}
			}

		}
		// openLeftNav is in hiearchy of the item clicked (an ancestor). Keeping the hierarchy open, Set the node to be the new openLeftNav and if it has children, reveal the children.
		else if(((this.hierarchyStr+":").indexOf(":"+openLeftNav+":")) > -1){
			//alert("the item clicked {"+this.hierarchyStr+"} is an descendant of openLeftNav {"+openLeftNav+"}.");
			//var theObj = param2object(this.idStr);.");
			openNodesBelow = true;
			openLeftNav = this.idStr;
		}
		// openLeftNav is not in the hiearchy of the item clicked. Close the hierarchy of openLeftNav, set the node to be the new openLeftNav and if it has children, reveal the children.
		else{
			//alert("the item clicked {"+this.hierarchyStr+"} is NOT an descendant of openLeftNav {"+openLeftNav+"}. It might be a Ancestor.");
			closeNodesBelow = true;
			// there are 3 possibilities
			// 1) item clicked is an ancestor at level one
			var currOpenNavNodeHierStr = param2object(openLeftNav).getHierarchyStr();
			var firstColonIndex = currOpenNavNodeHierStr.indexOf(":");
			var currOpenNavRootStr = currOpenNavNodeHierStr.substring(firstColonIndex + 1) + ":";
			
			var clickedNodeStr = this.getHierarchyStr() + ":"
			//alert(currOpenNavRootStr+"|"+clickedNodeStr);
			
			if(currOpenNavRootStr == clickedNodeStr){
				// It's a first level nav item.
				//alert("level one ancestor");
				openLeftNav = "";
			}
			// 2) item clicked is an ancestor above level one
			else if(((param2object(openLeftNav).getHierarchyStr()+":").indexOf(":"+this.idStr+":")) > -1){
				//alert("ancestor above level one");
				openLeftNav = this.idStr;
			}
			// 3) item clicked is not an ancestor but a sibling
			else if(param2object(openLeftNav).getParentStr() == this.getParentStr()){
				//alert("sibling");
				param2object(openLeftNav).rollup(openLeftNav);
				openLeftNav = this.idStr;
				openNodesBelow = true;
			}
			// 4) item clicked is in a totally different branch
			//alert(this.hierarchyStr+": - root:"+this.idStr+":");
			else{
				//alert("different branch or fork.");
				// The question becomes how much to roll up?
				// If the node clicked on is a totally different level one node we want to roll up the previous level one node completely.
				// We know "openLeftNav" is in the branch we need to rollup
				
				var rollStr = "";
				var hStr = param2object(openLeftNav).getHierarchyStr();
				var startIndex = hStr.indexOf(":");
				var endIndex = hStr.indexOf(":", startIndex + 1);
				if(endIndex > -1){
					rollStr = hStr.substring(startIndex + 1, endIndex);
				}else{
					rollStr = hStr.substring(startIndex + 1);
				}
				param2object(rollStr).rollup(rollStr);

				openLeftNav = this.idStr;
				openNodesBelow = true;
			}
			
		}
		
		if(selectedId == this.idStr){
			selectedId = "";
		}else{
			selectedId = this.idStr;
		}

		if(closeNodesBelow){
			this.rollup(this.idStr);
		}
		
		if(openNodesBelow){
			if(this.children.length > 0){
				var child = param2object(this.children[0]).idStr;
				var displayStr = document.getElementById(child).style.display;
				if(displayStr == "none"){
					openLeftNav = this.idStr;
					setTimeout('param2object("'+this.idStr+'").delayedShowSub(0);', 25);
				}
			}
		}	
		
		if(typeof this.url != "undefined"){
			if(this.url != ""){
				//alert(this.url);
				if(this.url.indexOf("load_section(") != 0){
					document.location.href = this.url;
				}else{
					eval(this.url);
				}
			}
		}
		current_root.select();
	}LeftNavNode.prototype.showSubs = proto_showSubs;
		
	function proto_rollup(startingNode){
		//alert("Calling rollup() on "+this.idStr);
		if(typeof startingNode != "undefined"){
			if(startingNode != this.idStr){
				//alert(startingNode +"|"+ this.idStr);
				document.getElementById(this.idStr).style.display = "none";
			}
		}
		if(this.children.length > 0){
			param2object(this.children[0]).rollup();
		}
		// has siblings?
		if((this.parent != null) && (this.idStr != startingNode)){
			var nextNode = param2object(this.parent).nextChild(this.idStr);
			if(nextNode != null){
				nextNode.rollup();
			}
		}
	}LeftNavNode.prototype.rollup = proto_rollup;
	
	function proto_delayedShowSub(index){
		var thisChildIdStr = (param2object(this.children[index])).idStr;
		document.getElementById(thisChildIdStr).style.display = "block";
		if(index < (this.children.length - 1)){
			setTimeout('param2object("'+this.idStr+'").delayedShowSub('+(index + 1)+');', 25);
		}
	}LeftNavNode.prototype.delayedShowSub = proto_delayedShowSub;
	
	function proto_select(){
		// look at each item and deselect unless it is the "selectedId"
		//alert(this.idStr+"|"+selectedId);
		if(this.idStr != selectedId){ // && (this.idStr.indexOf("_root") < 0)
			document.getElementById(this.idStr).className = this.baseClassStr + " " + this.classStr;
		}else{
			//alert(selectedId+"|"+this.idStr+"|"+this.classStr+"over");
			document.getElementById(this.idStr).className = this.baseClassStr + " " + this.classStr+"over";
		}
		
		if(this.children.length > 0){
			param2object(this.children[0]).select();
		}
		// has siblings?
		if(this.parent != null){
			var nextNode = param2object(this.parent).nextChild(this.idStr);
			if(nextNode != null){
				nextNode.select();
			}
		}

	}LeftNavNode.prototype.select = proto_select;

	// *************************************************************************

	function mouseEvent(clas, type, id){
		if(id != selectedId){
			var tail = "";
			if(type == "over"){ tail = "over"; }
			document.getElementById(id).className = clas + tail;
		}
	}
	
	var openLeftNav = "";
	var nextLeftNav = "";
	var selectedId = "";
	var current_root = null;
	
	// *************************************************************************
	var sites_root = new LeftNavNode("sites_root", null, "Learning Sites", "lnavnodebase", "lnavheader","");
	var bif = new LeftNavNode("bif", "sites_root", "Boston Institute of Finance", "lnavnodebase", "lnavnode","");
		var prod_cfp = new LeftNavNode("prod_cfp", "bif", "CFP(R) Education", "lnavsubbase", "lnavsub","http://www.bostonifi.com/bif/site/bufp/Index.aspx");
		var prod_mfs = new LeftNavNode("prod_mfs", "bif", "Mutual Fund Training", "lnavsubbase", "lnavsub","http://www.bostonifi.com/bif/site/cmfs/Index.aspx");
		var prod_se7 = new LeftNavNode("prod_se7", "bif", "NASD Series 7 & 63", "lnavsubbase", "lnavsub","http://www.bostonifi.com/bif/site/series763/Index.aspx");
		var prod_se6 = new LeftNavNode("prod_se6", "bif", "NASD Series 6 & 63", "lnavsubbase", "lnavsub","http://www.bostonifi.com/bif/site/series763/Index.aspx");
	var wiley = new LeftNavNode("wiley", "sites_root", "Wiley CPA e-Prep", "lnavnodebase", "lnavnode","http://www.cpaeprep.com");
	var btp = new LeftNavNode("btp", "sites_root", "Boston Test Prep", "lnavnodebase", "lnavnode","http://www.bostontestprep.com");

	var about_root = new LeftNavNode("about_root", null, "Home", "lnavnodebase", "lnavnode","load_section('Welcome','home', sites_root)");
		var about_acadient = new LeftNavNode("about_acadient", "about_root", "About Acadient", "lnavnodebase", "lnavnode","load_section('About Acadient','about',about_root,about_acadient)");
		var about_careers = new LeftNavNode("about_careers", "about_root", "Acadient Careers", "lnavnodebase", "lnavnode","load_section('Acadient Careers','careers',about_root,about_careers)");
		var about_products = new LeftNavNode("about_products", "about_root", "Acadient Products", "lnavnodebase", "lnavnode","load_section('Acadient Products','products',about_root,about_products)");
		
	var core_root = new LeftNavNode("core_root", null, "Home", "lnavnodebase", "lnavnode","load_section('Welcome','home',sites_root)");
		var core_educate = new LeftNavNode("core_educate", "core_root", "Educate", "lnavnodebase", "lnavnode","load_section('Educate','educate', core_root,core_educate)");
		var core_learn = new LeftNavNode("core_learn", "core_root", "Learn", "lnavnodebase", "lnavnode","load_section('Learn','learn', core_root,core_learn)");
		var core_partner = new LeftNavNode("core_partner", "core_root", "Partner", "lnavnodebase", "lnavnode","load_section('Partner','partner', core_root,core_partner)");
	// *************************************************************************
	
	function load_section(sectionStr, sectionVar, navRoot, objToSelect){
		document.getElementById("main_section_title").innerHTML = sectionStr;
		//alert(sectionVar);
		document.getElementById("main_section_content").innerHTML = eval(sectionVar);
		if(navRoot != null){
			if(current_root != navRoot){
				current_root = navRoot;
				navRoot.writeNode();
				//navRoot.select();
			}
			if(typeof objToSelect != "undefined"){
				selectedId = objToSelect.idStr;
				navRoot.select();
			}
		}
		document.getElementById("main_lowerbox_content").innerHTML = featured;
	}
	educate = '<h3>Empower Your Workforce with Solution-oriented Learning<\/h3><p class="pwH3">Acadient engages it\'s corporate customers via a consultative sales process. With a library of 23 courses comprised of over 102 individual modules and over 7,000 individual questions, Acadient is able to provide a wide range of pre-configured learning solutions. Acadient has solutions for:<\/p><ul><li>On-boarding<\/li><li>Outplacement<\/li><li>Advisor Support<\/li><\/ul><p>Acadient can also craft customized e-learning solutions based on it\'s catalog items, as well as private-label off the shelf products.<\/p>';
	partner = '<h3>Leverage Brand and IP Online With Turn-key Partnerships<\/h3><p>Acadient has established a successful track record in the E-Learning solutions market by enabling universities, organizations, and publishers to monetize their content IP. For Boston University and J. Wiley &amp; Sons, Acadient was a clear choice as a partner, because they not only possess the capability to build online learning but can build, sell, and deliver.<\/p><p>As an e-learning university solutions vendor, Acadient leverages three core capabilities, as outlined below:<\/p><h4>End-to-end E-Learning Program and Course Development Capability<\/h4><p class="pwH3">Acadient has developed an XML database and publishing system that is used to future-proof its content assets. This system is key and enables Acadient to provide rapid course development and flexible customized course assembly capability.<\/p><h5>Case-study<\/h5><p class="pwH3">Acadient worked with Boston University to develop the Boston University Online Program for Financial Planners, a six-course, 106-module, 696-hour program based on a classroom program. The program is a leader in its field and provides Boston University with seven-figure annual revenues.<\/p><h4>Online Marketing Services, Inside and Corporate Sales Capability<\/h4><p class="pwH3">Acadient\'s retail sales channel leverages leading edge online marketing techniques such as PPC and targeted email blast to drive lead generation and conversion. Inside sales associates handle inbound and outbound calls using a CRM system linked directly to lead-generation and commerce systems.<\/p><h5>Case-study<\/h5><p class="pwH3">By leveraging partners brand names and it\'s own online marketing expertise, Acadient has seen enrollments increase 92% year-over-year since 2004, with average marketing cost-per-acquisition rates around $75/student.<\/p><h4>Acadient E-Learning-Commerce System<\/h4><p class="pwH3">Acadient University\'s revenue generation and tracking capabilities hinge on a powerful proprietary commerce system that has built-in support for learning management, promotions, coupons, incentives and reward programs, accounts, contracts, up-sell, cross-sell, self-service, SOAP API, and reporting. A hybrid of Learning Management and E-Commerce technologies, this platform represents a "missing link" in the learning solutions market.<\/p><h5>Case-study<\/h5><p class="pwH3">Acadient\'s E-Learning Commerce System enables the Boston Test Prep Online SAT Prep Program to be re-distributed through ISPs across the country by way of an xml SOAP link with partner Synacor (the countries leading provider of content to the cable industry).<\/p>';
	learn = '<h3>Experience Word-class E-Learning from a Trusted Source<\/h3><p>Acadient Inc. was formed in 2001 with the goal of becoming a destination for world-class e-learning. Today Acadient has 23 courses containing 102 individual modules. Acadient distributes its products through its three learning sites:<\/p><ul><li style="margin-bottom: 12px;"><a href="http://www.bostonifi.com" target="_blank" style="font-weight: bold;">Boston Institute of Finance<\/a> <a class="hiddenlink" href="http://www.bostonifi.com" target="_blank">&lt;www.bostonifi.com&gt;<\/a><br />A premier source for financial service education featuring the <a href="http://www.bostonifi.com/bif/site/bufp/Index.aspx" target="_blank">Boston University Online Financial Planner Program<\/a>.<\/li><li style="margin-bottom: 12px;"><a href="http://www.cpaeprep.com" target="_blank" style="font-weight: bold;">Wiley CPA e-Prep<\/a> <a class="hiddenlink" href="http://www.cpaeprep.com" target="_blank">&lt;www.cpaeprep.com&gt;<\/a><br />An online CPA exam prep program from one of the most trusted names in CPA education.<\/li><li style="margin-bottom: 12px;"><a href="http://www.bostontestprep.com" target="_blank" style="font-weight: bold;">Boston Test Prep Online SAT Prep Course<\/a> <a class="hiddenlink" href="http://www.bostontestprep.com" target="_blank">&lt;www.bostontestprep.com&gt;<\/a><br />A unique and powerful online SAT prep program that is a cut above the competitors.<\/li><\/ul>';
	
	about = '<p>Acadient Inc. was formed in 2000 with the goal of becoming a destination for world-class e-learning. Acadient\'s e-Learning Solutions have successfully enabled brand-name clients to monetize their IP online by partnering to develop products such as the Boston University Online Financial Planner Program, the NICSA Certified Mutual Fund Specialist Program, Wiley CPA e-Prep Program, and the Boston Test Prep Online SAT Prep Program.<\/p><p>Acadient\'s market, the E-Learning Products and Services Market, includes all services and products that support and provide on-line education. This market is rapidly growing and is expected to advance to over $76 billion in the next five years. This growth is being driven by the strong trend in Business Process Outsourcing to vendors such as Acadient who can provide clients higher-margins and faster service through turnkey educational solutions.<\/p><p>The company is aggressively expanding its offerings in the E-Learning Services Market, a market that includes all services and products that support and provide on-line education and will account for $22 Billion in 2007, and over $76 Billion by 2012.<\/p><p>Acadient is a cash flow positive company experiencing year over year growth servicing the large and growing e-learning market.  Acadient enjoys a three and five-year CAGR of 44.99% and 110.40% respectively.  The company has developed tools enabling it to rapidly develop courseware along with its proficiency at marketing e-learning through the internet, Acadient is well positioned to experience rapid growth.<\/p><ul><li><a href="javascript: load_section(\'Acadient&nbsp;Careers\',\'careers\',about_root,about_careers);">Acadient Careers<\/a><\/li><li><a href="javascript: load_section(\'Acadient&nbsp;Products\',\'products\',about_root,about_products);">Acadient Products<\/a><\/li><\/ul>';
	
	careers = '<h4>Inside Sales Representative<\/h4><p>Leading online education company focused on the financial services industry is seeking an inside Sales Representative. This Boston-based position is responsible for closing sales on leads generated by the Company\'s marketing staff.<\/p><p>Qualifications include: minimum 2 years\' inside sales experience selling to financial advisors,  preferably in a consultative sales role; strong oral communication skills; computer literacy; goal-orientation; self-starting ability.<\/p><p>The Company offers competitive compensation, growth potential, and a pleasant work environment. <\/p><p>Applicants should email their resumes in Word format to: <a href="mailto:careers@acadient.com">careers@acadient.com<\/a>.<\/p><p>No phone calls please.<\/p>';
	
	products = '<h4>Products Categories<\/h4><h5>Preparation for professionally mandated board administered exams<\/h5><p class="pwH3"><a class="hiddenlink" href="http://www.cpaeprep.com" target="_blank">Wiley CPA e-Prep<\/a>, <a class="hiddenlink" href="http://www.bostonifi.com/bif/site/series663/Index.aspx" target="_blank">Series 6, &amp; 63<\/a> and <a class="hiddenlink" href="http://www.bostonifi.com/bif/site/series763/Index.aspx" target="_blank">Series 7, &amp; 63<\/a><\/p><\/p><h5>Academic prerequisites for certification requirements<\/h5><p class="pwH3"><a class="hiddenlink" href="http://www.bostonifi.com/bif/site/bufp/Index.aspx" target="_blank">Boston University Online Financial Planner Program<\/a><\/p><h5>Core industry knowledge<\/h5><p class="pwH3"><a class="hiddenlink" href="http://www.bostonifi.com/bif/site/cmfs/Index.aspx" target=_blank">Certified Mutual Fund Specialist Program<\/a><\/p><h5>College entrance exams<\/h5><p class="pwH3"><a class="hiddenlink" href="http://www.bostontestprep.com" target="_blank">Boston Test Prep Online SAT Prep<\/a><\/p><h4>Markets Served<\/h4><h5>Financial Planners<\/h5><p class="pwH3">Estimated 20,000 new job openings a year through 2012. Approximately 6,000 test takers annually.<\/p><h5>Securities Professionals<\/h5><p class="pwH3">Estimated 7,000 new job openings a year through 2012.<\/p><h5>Accountants<\/h5><p class="pwH3">Estimated 40,000 new job openings a year through 2012. Approximately 130,000 test takers annually.<\/p><h5>Financial Service Professionals<\/h5><p class="pwH3">The CMFS product is relevant to a large number of groups in and around the financial service sector (over 140k according to a 2005 ICI survey) including mutual fund companies and companies that service the mutual fund industry. The industry is growing globally with the U.S. holding only 16% of the global assests.<\/p><h5>High School Students<\/h5><p class="pwH3">The BTP SAT serves students preparing for both the SAT and the PSAT/NMSQ.  2.1 million students take the SAT annually. 1.3 million take the PSAT/NMSQ annually. The test is offered seven times a year in the United States.<\/p>';
	
	contact = '<h4>Corporate Solutions<\/h4><p class="pwH3">1-800-915-4742<\/p><h4>Retail Sales<\/h4><p class="pwH3">1-800-329-4996<\/p><h4>Customer Service<\/h4><p class="pwH3" style="margin-bottom: 12px;">1-800-329-4996 extension 3<br />or email <a href="mailto: support@bostonifi.com">support@bostonifi.com<\/a><\/p>';
	login = '<form method="POST" action="https://www.bostonifi.com/acdcom/login.aspx?frcart=1&showHDR=1"><table style="margin-top: 12px; margin-bottom: 12px;" border="0" cellpadding="2"><tr><td>Email<\/td><td><input name="remuser" type="text" id="useremail" class="textbox" \/><\/td><\/tr><tr><td>Password<\/td><td><input name="rempwd" type="password" id="userpwd" class="textbox" \/><\/td><\/tr><tr><td><\/td><td><input style="margin-top: 4px;" type="submit" name="loginbutton" value="Login" id="loginbutton" \/><\/td><\/tr><tr><td><\/td><td><a href="http://www.bostonifi.com/acdcom/ForgotPass.aspx?em=&showHDR=1&l=" style="font-size:9px;color:grey;">Forgot Password?<\/a><\/td><\/tr><\/table><\/form>';
	
	home = '<h3>Learn More About the Acadient Difference<\/h3><p>Acadient has been a provider of e-learning solutions for corporations, institutions, and individuals since 2001.  Leaders in  education, industry, and publishing have turned to Acadient\'s core skill in e-learning, marketing, and technology to partner to develop world-class products.<\/p><p>Whether you are an individual building skill to accelerate your career path or a manager looking to educate your workforce, you can turn to Acadient as a trusted source for high-quality e-learning.<\/p>';

	featured = '<h3>Boston University Online Program for Financial Planners<\/h3><h5>Price - $2,595.00 - The Most Popular Online CFP&reg; Certification Course.<\/h5><p>Based on one of the oldest and most well-respected classroom programs for financial planners. This premier program fulfills the educational component required to sit for the CFP&reg; Certification Examination. <a href="http://www.bostonifi.com/bif/site/bufp/Index.aspx" title="Boston University Online Program for Financial Planners - Enroll" target="_blank"> Learn More Today!<\/a><\/p>';
