window.status="Lisa Holyland, Complementary Therapist";

b=0;
k=0;
i=-80;
q=0;
nets = (document.layers) ? 1:0
msie = (document.all) ? 1:0
major=parseInt(navigator.appVersion);


function move(newleft, newtop) {
if (major<5){  
 if (nets) {
        document.logo.left = newleft;
        document.logo.top = newtop;
    }
    if (msie) {
        logo.style.left = newleft;
        logo.style.top = newtop;
        }
}
else
{
	document.getElementById("logo").style.left=newleft;
	document.getElementById("logo").style.top=newtop;
	

}

}



function go()
{
if (b==0)
{
timerID = setInterval('movetime()',20);
b=1;
wleft=(screen.width*0.05)/2;
wtop=((screen.height-150)/2)-80;
eleft=(screen.width-300)/2;
etop=screen.height-150-190-20;
cleft=(screen.width-250)/2;
ctop=screen.height-150-50;
if (major<5){
 if (nets) {
        document.buttons.left = wleft;
        document.buttons.top = wtop;
		document.buttons.visibility = "show";
        document.embody.left = eleft;
        document.embody.top = etop;
		document.embody.visibility = "show";
        document.copyright.left = cleft;
        document.copyright.top = ctop;
		document.copyright.visibility = "show";
		document.buttab1.width = screen.width*0.95  ;
		document.buttab2.width = screen.width*0.95  ;
    }
    if (msie) {
        buttons.style.left = wleft;
        buttons.style.top = wtop;
        buttons.style.visibility = "visible";
        embody.style.left = eleft;
        embody.style.top = etop;
        embody.style.visibility = "visible";
        copyright.style.left = cleft;
        copyright.style.top = ctop;
        copyright.style.visibility = "visible";
		buttab1.style.width = screen.width*0.95;
		buttab2.style.width = screen.width*0.95;
        }
}
else
{
	document.getElementById("buttons").style.left=wleft;
	document.getElementById("buttons").style.top=wtop;
    document.getElementById("buttons").style.visibility="visible";
    document.getElementById("embody").style.left=eleft;
	document.getElementById("embody").style.top=etop;
    document.getElementById("embody").style.visibility="visible";
    document.getElementById("copyright").style.left=cleft;
	document.getElementById("copyright").style.top=ctop;
    document.getElementById("copyright").style.visibility="visible";
    document.getElementById("buttab1").style.width = screen.width*0.95;
    document.getElementById("buttab2").style.width = screen.width*0.95;

}
}

}

function movetime()
{
i=i+0.75;
k=k+0.1;
move(((60*Math.sin(-k))+((screen.width/2)-42)),i);

if (k>9 && q==0){
q=1;
wleft=(screen.width/2)-145;
wtop=80;
if (major<5){
 if (nets) {
        document.words.left = wleft;
        document.words.top = wtop;
		document.words.visibility = "show";
    }
    if (msie) {
        words.style.left = wleft;
        words.style.top = wtop;
        words.style.visibility = "visible";
        }
}
else
{
	document.getElementById("words").style.left=wleft;
	document.getElementById("words").style.top=wtop;
    document.getElementById("words").style.visibility="visible";

}

}

if (k>12.4)
{
clearInterval(timerID);

}
}

