pic_width=490;
pic_height=300;
border_size=0;
alignment=4;


if (document.images)
 {
     pic1= new Image(pic_width,pic_height);
     pic1.src="rotate/1.jpg";  
     pic2= new Image(pic_width,pic_height); 
     pic2.src="rotate/2.jpg"; 
     pic3= new Image(pic_width,pic_height); 
     pic3.src="rotate/3.jpg"; 
     pic4= new Image(pic_width,pic_height); 
     pic4.src="rotate/4.jpg"; 
     pic5= new Image(pic_width,pic_height);
     pic5.src="rotate/5.jpg";      
     pic6= new Image(pic_width,pic_height);
     pic6.src="rotate/6.jpg";  
     pic7= new Image(pic_width,pic_height);
     pic7.src="rotate/7.jpg";  
     pic8= new Image(pic_width,pic_height);
     pic8.src="rotate/8.JPG"; 
     pic9= new Image(pic_width,pic_height);
     pic9.src="rotate/9.JPG"; 
     pic10= new Image(pic_width,pic_height);
     pic10.src="rotate/10.JPG"; 

     //pic11= new Image(pic_width,pic_height);
     //pic11.src="rotate/11.jpg"; 
     //pic12= new Image(pic_width,pic_height);
     //pic12.src="rotate/12.jpg"; 
     //pic13= new Image(pic_width,pic_height); 
     //pic13.src="rotate/13.jpg"; 
     //pic14= new Image(pic_width,pic_height); 
     //pic14.src="rotate/14.jpg"; 
     //pic15= new Image(pic_width,pic_height); 
     //pic15.src="rotate/15.jpg"; 
     //pic16= new Image(pic_width,pic_height);
     //pic16.src="rotate/16.jpg";  
     //pic17= new Image(pic_width,pic_height); 
     //pic17.src="rotate/17.jpg"; 
     //pic18= new Image(pic_width,pic_height); 
     //pic18.src="rotate/18.jpg"; 
     //pic19= new Image(pic_width,pic_height); 
     //pic19.src="rotate/19.jpg"; 
     //pic20= new Image(pic_width,pic_height); 
     //pic20.src="rotate/20.jpg"; 
     //pic21= new Image(pic_width,pic_height);
     //pic21.src="rotate/21.jpg";  
     //pic22= new Image(pic_width,pic_height); 
     //pic22.src="rotate/22.jpg"; 
     //pic23= new Image(pic_width,pic_height); 
     //pic23.src="rotate/23.jpg"; 
     //pic24= new Image(pic_width,pic_height); 
     //pic24.src="rotate/24.jpg"; 	
 }    


function get_random(maxNum)
{
  if (Math.random && Math.round)
  {
    var ranNum= Math.round(Math.random()*(maxNum-1));
    ranNum+=1;
    return ranNum;
  }
  else
  {
  today= new Date();
  hours= today.getHours();
  mins=   today.getMinutes();
  secn=  today.getSeconds();
  if (hours==19)
   hours=18;
  var ranNum= (((hours+1)*(mins+1)*secn)%maxNum)+1;
  return ranNum;
  }
}

function get_Image()
{
 if (document.images)
 {
  var choose_one= get_random(10);  
  choose_one--;

  var pics= new Array(2) 
   pics[0]=pic1.src;
   pics[1]=pic2.src;
   pics[2]=pic3.src;
   pics[3]=pic4.src;
   pics[4]=pic5.src;
   pics[5]=pic6.src;
   pics[6]=pic7.src;
   pics[7]=pic8.src;
   pics[8]=pic9.src;
   pics[9]=pic10.src;
   //pics[10]=pic11.src;
   //pics[11]=pic12.src;
   //pics[12]=pic13.src;
   //pics[13]=pic14.src;
   //pics[14]=pic15.src;
   //pics[15]=pic16.src;
   //pics[16]=pic17.src;
   //pics[17]=pic18.src;
   //pics[18]=pic19.src;
   //pics[19]=pic20.src;
   //pics[20]=pic21.src;
   //pics[21]=pic22.src;
   //pics[22]=pic23.src;
   //pics[23]=pic24.src;
   
  document.write("<IMG SRC='"+pics[choose_one]+"' width='"+pic_width+"' height='"+pic_height+"' border='"+border_size+"'>");
 }
}

