
function addScroller() {
// code each scroller as follows:
// startScroll('id of scroller div','content of scroller');
startScroll('sidebar_test','<p>My first Pregnancy, (without chiropractor) was very difficult.  With my second pregnancy, under Dr. Hunter&#146;s care, was much smoother. Labour was super quick and relatively easy. I highly recommend Dr. Hunter&#146;s care during pregnancy and will most definitely continue to see him post partum and during my 3rd pregnancy.<br>------------------------------<br>In the past year that I have been receiving treatments from Dr. Hunter I have noticed a significant difference in my health. I suffered from constant headaches that would last all day. I would wake up with a headache and go to bed with a headache EVERY DAY. Now, I rarely suffer from a headache. I think the last time that I took Tylenol was over 6 months ago.<br>------------------------------<br>I was suffering from I.B.S for 6 Years and after 6 months with Dr. Hunter it was also completely gone!<br>------------------------------<br>Since I started coming to Dr. Hunter I have had no more pain in my neck and back. It feels so good to sit up in the morning free of pain. I also find I am waling up better! Not bad for a 71 year old lady!!<br>------------------------------<br>Chiropractic care has really helped me with my mild neck pain linked to a car accident several years ago. Now that a receive care, and pay special attention to proper posture/ neck exercises, the pain has all but vanished. If ever there is a doubt about this interdisciplinary program, I&#146;m living proof that it does work wonders in help someone regain a valuable pain free state. I would recommend this to anyone. My neck no longer bothers me and I feel healthier each and every day.<br>------------------------------<br>I noticed a significant change in my neck. My neck is no longer stiff and sore. My head doesn&#146;t feel too heavy for my neck. My migraines have improved dramatically. I used to have a headache every day with a migraine every few days. My headaches have decreased since my treatment started last February. I have not had a migraine since.<br>------------------------------<br>3 months ago 1 weighed 87 pounds, had to spend my days resting to conserve my energy for daily chores such as cooking the children&#146;s meals and cleaning the house. The pain was constant and severe. I now weigh 117 pounds. A weight I&#146;m happy and proud of. I have much less pain and enough energy left over to be able to work a part time job outside of the house. I&#146;m amazed and grateful when I look back and see the differences.<br>------------------------------<br>After many years of chronic pain and gentle nudging from a good friend, I finally visited Dr. Mark for an assessment. Over the last 8 years, I have been treated for chronic fatigue and it&#146;s many symptoms, such as asthma, back pain, IBS, and more recently menopause. I was skeptical at first as I have done chiropractic and physio in the past, only to discover the pain never truly went away. My first visit was beginning of June. The same day as my assessment I came to a Tuesday evening workshop on nutrition. That Tuesday changed my life. I followed the “caveman” diet and have lost over 15 LBS, I go 3 times a week for adjustments, I am more active and the best part is no more hormone therapy, asthma medication or IBS medication. Lower back pain and right hip pain has decreased to point I can walk/shop again. The neck we are still working on but any overall quality of life is 100%.<br>------------------------------<br> <\/p>');
}

var speed=6; // scroll speed (bigger = faster)
var dR=false; // reverse direction

// Vertical Scroller Javascript
// copyright 24th September 2005, by Stephen Chapman
// permission to use this Javascript on your web page is granted
// provided that all of the code below (as well as these
// comments) is used without any alteration
var step = 2; function objWidth(obj) {if(obj.offsetWidth) return obj.offsetWidth; if (obj.clip) return obj.clip.width; return 0;} function objHeight(obj) {if(obj.offsetHeight) return obj.offsetHeight; if (obj.clip) return obj.clip.height; return 0;} function scrF(i,sH,eH){var x=parseInt(i.top)+(dR? step: -step); if(dR && x>sH)x=-eH;else if(x<2-eH)x=sH;i.top = x+'px';} function startScroll(sN,txt){var scr=document.getElementById(sN); var sW = objWidth(scr)-6; var sH = objHeight(scr); scr.innerHTML = '<div id="'+sN+'in" style="position:absolute; left:3px; width:'+sW+';">'+txt+'<\/div>'; var sTxt=document.getElementById(sN+'in'); var eH=objHeight(sTxt); sTxt.style.top=(dR? -eH : sH)+'px'; sTxt.style.clip='rect(0,'+sW+'px,'+eH+'px,0)'; setInterval(function() {scrF(sTxt.style,sH,eH);},1000/speed);}
window.onload = addScroller;