/*
Shake image script (onMouseover)- 
© Dynamic Drive (www.dynamicdrive.com)
For full source code, usage terms, and 100's more DHTML scripts, visit http://dynamicdrive.com
*/

//configure shake degree (where larger # equals greater shake)
var rector=3

///////DONE EDITTING///////////
var stopit=0 
var a=1

function init(which){
stopit=0
shake=which
shake.style.left=0
shake.style.top=0
}

function rattleimage(){
if ((!document.all&&!document.getElementById)||stopit==1)
return


if (a==1){
  a++;
 setTimeout("rattleimage()",61150)
 count = 1;
} else {
if (a==2){
shake.style.top=parseInt(shake.style.top)+rector
}
else if (a==3){
shake.style.left=parseInt(shake.style.left)+rector
}
else if (a==4){
shake.style.top=parseInt(shake.style.top)-rector
}
else{
shake.style.left=parseInt(shake.style.left)-rector
}

count++;
if (a<5) {
  a++
} else {
  if (count <25) {
    a=2;
  } else {
    a=1;
  }
}
setTimeout("rattleimage()",50)
}
}

function stoprattle(which){
stopit=1
which.style.left=0
which.style.top=0
}

image1 = new Image();
image1.src = "images/navigation/home_down.jpg";
image2 = new Image();
image2.src = "images/navigation/aboutus_down.jpg";
image3 = new Image();
image3.src = "images/navigation/schedule_down.jpg";
image4 = new Image();
image4.src = "images/navigation/signup_down.jpg";
image5 = new Image();
image5.src = "images/navigation/giftcards_down.jpg";
image6 = new Image();
image6.src = "images/navigation/gallery_down.jpg";
image7 = new Image();
image7.src = "images/navigation/contactus_down.jpg";


