function setupPage()
{
	// round box1 corners
	var box1List = document.getElementsByClassName("box1");
	var box1h2;
	box1List.each(function(box){
					box1h2 = box.getElementsByTagName("h3");
					if(box1h2.length > 0) Rico.Corner.round(box1h2[0], {corners:"top", color:"#143aa9", bgColor:"#e3e9f7"});
			   });
	// round corners
	var roundList = document.getElementsByClassName("round");
	roundList.each(function(r){
					Rico.Corner.round(r, {corners:"top"});
			   });

	// emphasize current nav point
	if(document.location.href.match(/\/online-traffic-school\//)) Element.addClassName($('nav_online_traffic_school'), 'navActive');
	else if(document.location.href.match(/\/defensive-driving-online\.html/)) Element.addClassName($('nav_defensive_driving_online'), 'navActive');
	else if(document.location.href.match(/\/florida-traffic-school\/auto-insurance-discount\.html/)) Element.addClassName($('nav_auto_insurance_discount'), 'navActive');
	else if(document.location.href.match(/\/florida-traffic-school\//)) Element.addClassName($('nav_florida_traffic_school'), 'navActive');
	else if(document.location.href.match(/\/florida\//)) Element.addClassName($('nav_florida_traffic_school'), 'navActive');
	else if(document.location.href.match(/\/newdrivers\.php/)) Element.addClassName($('nav_learner_permit'), 'navActive');
	else if(document.location.href.match(/\/driver-education\//)) Element.addClassName($('nav_learner_permit'), 'navActive');
	else if(document.location.href.match(/\/dmv-approved\.html/)) Element.addClassName($('nav_dmv'), 'navActive');
	else if(document.location.href.match(/\/links\.html/)) Element.addClassName($('nav_resources'), 'navActive');
	else if(document.location.href.match(/\/resources\.html/)) Element.addClassName($('nav_resources'), 'navActive');
}