// JavaScript Documentfunction getSmileFitText(){	return "Smilefit, much like overall fitness, is designed to make you look better, feel better, and withstand the stress of life better.  Smilefit allows for a long lasting and beautiful smile, face, and joints.  The lack of stress in the system has been reported to decrease wrinkling as we age, reduce bags under eyes, reduce headaches, and make natural and restored teeth last longer.  These attributes were discovered by studying the healthiest and most beautiful teeth and smiles to determine what similarities these people had.";}function showService(id) {	for (var i=0; i<=9; i++){		if (i == id){			var el = document.getElementById('service-' + i);			var a = document.getElementById('a-service-' + i);			if (el.style.display == 'none'){				el.style.display = 'block';				a.setAttribute('class', 'current');				a.blur();				//document.getElementById('page-content').style.height = '500px';			} 		} else {			document.getElementById('service-' + i).style.display = 'none';			var a;			if (a = document.getElementById('a-service-' + i)){				a.setAttribute('class', null);			}		}	}}