window.defaultStatus= "                                                                                                                                                                                                                      ";


a = screen.width;
b = screen.height;

i=0;
i1=1;
j=0;
j1=2;

function bouge () {
   document.all.LINUX.style.left = a / 8;
   document.all.LINUX.style.top = b / 3.87;
   document.all.JAVA.style.left = a * 3 / 4;
   document.all.JAVA.style.top = b / 3.87;
   document.all.HTML.style.left = a / 2.286;
   document.all.HTML.style.top = b / 3.87; 
   linux = a / 8;
   linuxvar = 1;
   html =  a / 2.286;
   htmlvar = 1;
   java = a * 3 / 4;
   javavar = 1; 
   truc (); }

function truc () {
  document.all.LINUX.style.left = linux;
  document.all.HTML.style.left = html;
  document.all.JAVA.style.left = java;
  linux = linux + linuxvar;
  html = html + htmlvar;
  java = java + javavar ;
  if ( linux == 0 || linux > html - 90) {
    linuxvar = linuxvar * -1; }
  if ( html < linux + 90 || html > java - 90 ) {
    htmlvar = htmlvar * -1; }
  if ( java < html + 90 || java > a / 1.135 ) {
    javavar = javavar * -1; }
  setTimeout ("truc ();",10);   }

