/************************************** * http://javascripts.vbarsan.com/ * This notice may not be removed **************************************/ //-- Begin Scroller's Parameters and messages --> //scroller's width var swidth=215; //scroller's height var sheight=260; //scroller's speed var sspeed=4; var restart=sspeed; var rspeed=sspeed; //scroller's pause var spause=2500; //scroller's background var sbcolor="#e8e8e8"; //messages: set your own; use as many as you'd like; set up Hyperlinks to //URLs as you normally do: ..message..; var singletext=new Array(); singletext[1]='
GP On Ebley welcomes back....
Dr Amelia Haines
Sex Therapist Dr Amelia Haines.
-
She has worked for over 14 years as a Sexual Health Dr. and can help you move forward in the areas of sex and relationships.
To find out more or to book please call 9387 1171.
'; singletext[2]='
Child Psychologist.
Child Psychologist

GP On Ebley would like to introduce Belinda Galovic.
Belinda specialises in working with children, adolescents and their families.
Parenting can be the most challenging and the most rewarding experience anyone can ever have, Belinda can provide the support that some families need during the difficult times. Phone 02 9387 1171 for more details or to book in with Belinda.
'; singletext[0]='
Helping you stay Fit.
Master Trainer

We would like to welcome Master Trainer Andrea Celon he works with our doctors to design best fitness program for each individual. He also specialises in Pre and Post Pregnancy excercise. We are already taking bookings at Gp On Ebley medical centre, Bondi Junction.
If you would like to find out more information or book please call us now on 9387 1171.
'; singletext[3]='
Get your Flu and Swine Flu Shots now, Bondi Junction
Flu Clinic now running at GP On Ebley.
- Ensure all your family are vaccinated
- Please call to book in for your vaccination now.
- We can also do onsite vaccinations for your business.
Enquire now call us on 9387 1171.
'; singletext[4]='
Yellow Fever Vaccine, Bondi Junction
Gp On Ebley, medical centre Bondi Junction, is now certified to give Yellow Fever Vaccinations.
We can provide for all your Travel Vaccination requirements.
- Please call to book in for your vaccinations now, 9387 1171.
'; //-- singletext[3]='
Javascript Vertical Scroller v3.5
Once a message left, next one comes in.
Adjustable: Size,Speed,Pause,Background.
Speed may be adjusted on the fly as well!
Runs any number of Messages/Images.
';--> //-- singletext[4]='
= message begins =
Any message may be as large as desired.
On Windows/Linux:

ie4+ firefox1+ ns6+ opera7+ ns4+.
On Mac OS X: Safari, ie5+ firefox1+ opera7+.

Any wider row will automatically be adjusted into as many rows as to fit the width you set for the scrolling area.

One may use any basic HTML code.

= message ends =
';--> //singletext[...]='...'; //-- end Parameters and message --> //-- begin: Scroller's Algorithm --> var ii=0; function goup(){if(sspeed!=rspeed*16){sspeed=sspeed*2;restart=sspeed;}} function start(){ if(document.getElementById){ns6div=document.getElementById('iens6div');ns6div.style.top=sheight+"px";ns6div.innerHTML=singletext[0];sizeup=ns6div.offsetHeight;ns6scroll();} else if(document.layers){ns4layer=document.ns4div.document.ns4div1;ns4layer.top=sheight;ns4layer.document.write(singletext[0]);ns4layer.document.close();sizeup=ns4layer.document.height;ns4scroll();} else if(document.all){iediv=iens6div;iediv.style.pixelTop=sheight+"px";iediv.innerHTML=singletext[0];sizeup=iediv.offsetHeight;iescroll();}} function iescroll(){if(iediv.style.pixelTop>0&&iediv.style.pixelTop<=sspeed){iediv.style.pixelTop=0;setTimeout("iescroll()",spause);}else if(iediv.style.pixelTop>=sizeup*-1){iediv.style.pixelTop-=sspeed+"px";setTimeout("iescroll()",100);}else{if(ii==singletext.length-1)ii=0;else ii++;iediv.style.pixelTop=sheight+"px";iediv.innerHTML=singletext[ii];sizeup=iediv.offsetHeight;iescroll();}} function ns4scroll(){if(ns4layer.top>0&&ns4layer.top<=sspeed){ns4layer.top=0;setTimeout("ns4scroll()",spause);}else if(ns4layer.top>=sizeup*-1){ns4layer.top-=sspeed;setTimeout("ns4scroll()",100);}else{if(ii==singletext.length-1)ii=0;else ii++;ns4layer.top=sheight;ns4layer.document.write(singletext[ii]);ns4layer.document.close();sizeup=ns4layer.document.height;ns4scroll();}} function ns6scroll(){if(parseInt(ns6div.style.top)>0&&parseInt(ns6div.style.top)<=sspeed){ns6div.style.top=0;setTimeout("ns6scroll()",spause);}else if(parseInt(ns6div.style.top)>=sizeup*-1){ns6div.style.top=parseInt(ns6div.style.top)-sspeed+"px";setTimeout("ns6scroll()",100);} else{if(ii==singletext.length-1)ii=0;else ii++; ns6div.style.top=sheight+"px";ns6div.innerHTML=singletext[ii];sizeup=ns6div.offsetHeight;ns6scroll();}} //-- end Algorithm -->