var counter = 0;

var toggle = 0;

var star_toggle = 0;



var pos = 0;

var msg = "      Coming soon in your language .... Russian." 

function Change_Images(){

if (counter==0){

  document.IMG1.src="images/Image1.jpg";

  document.IMG2.src="images/Image2.jpg";

  document.IMG3.src="images/Image3.jpg";

  document.IMG4.src="images/Image4.jpg";

  counter=1;

}

else if (counter==1){

  document.IMG1.src="images/Image5.jpg";

  document.IMG2.src="images/Image6.jpg";

  document.IMG3.src="images/Image7.jpg";

  document.IMG4.src="images/Image8.jpg";

  counter=2;

}

else if (counter==2){

  document.IMG1.src="images/Image9.jpg";

  document.IMG2.src="images/Image10.jpg";

  document.IMG3.src="images/Image11.jpg";

  document.IMG4.src="images/Image12.jpg";

  counter=3;

}

else if (counter==3){

  document.IMG1.src="images/Image13.jpg";

  document.IMG2.src="images/Image14.jpg";

  document.IMG3.src="images/Image15.jpg";

  document.IMG4.src="images/Image16.jpg";

  counter=4;

}

else if (counter==4){

  document.IMG1.src="images/Image17.jpg";

  document.IMG2.src="images/Image18.jpg";

  document.IMG3.src="images/Image20.jpg";

  document.IMG4.src="images/Image21.jpg";

  counter=0;

}



window.setTimeout("Change_Images()",30000);

}

function ScrollingStatusBar(){

  window.status = msg.substring(pos,msg.length) + msg.substring(0,pos);

  pos++;

  if(pos > msg.length)  pos = 0;

  window.setTimeout("ScrollingStatusBar()",300);

}


function FlashingStar() {

if (star_toggle==0) {

   document.Star_North_America.src="images/star_in.gif";

   document.Star_South_America.src="images/star_in.gif";

   document.Star_Africa.src="images/star_in.gif";

   document.Star_Asia.src="images/star_in.gif";

   document.Star_Australia.src="images/star_in.gif";

   document.Star_Europe.src="images/star_in.gif";

   star_toggle=1;

   window.setTimeout("FlashingStar()",500);

}

else if (star_toggle==1) {

   document.Star_North_America.src="images/star_out.gif";

   document.Star_South_America.src="images/star_out.gif";

   document.Star_Africa.src="images/star_out.gif";

   document.Star_Asia.src="images/star_out.gif";

   document.Star_Australia.src="images/star_out.gif";

   document.Star_Europe.src="images/star_out.gif";

   star_toggle=2;

   window.setTimeout("FlashingStar()",1000);



}

else {

   document.Star_North_America.src="images/star_off.gif";

   document.Star_South_America.src="images/star_off.gif";

   document.Star_Africa.src="images/star_off.gif";

   document.Star_Asia.src="images/star_off.gif";

   document.Star_Australia.src="images/star_off.gif";

   document.Star_Europe.src="images/star_off.gif";


   star_toggle=0;

    window.setTimeout("FlashingStar()",3000);

}



}





