/* author: max */
/* Creation date: 28.05.05 */


Image1_1=new Image();
Image1_1.src="img/1_1.png";
Image1_2=new Image();
Image1_2.src="img/1_2.png";

Image2_1=new Image();
Image2_1.src="img/2_1.png";
Image2_2=new Image();
Image2_2.src="img/2_2.png";

Image3_1=new Image();
Image3_1.src="img/3_1.png";
Image3_2=new Image();
Image3_2.src="img/3_2.png";

Image4_1=new Image();
Image4_1.src="img/4_1.png";
Image4_2=new Image();
Image4_2.src="img/4_2.png";

Image5_1=new Image();
Image5_1.src="img/5_1.png";
Image5_2=new Image();
Image5_2.src="img/5_2.png";

Image6_1=new Image();
Image6_1.src="img/6_1.png";
Image6_2=new Image();
Image6_2.src="img/6_2.png";



function check(){
for (i=0 ; i <= nodelength ; i++){
if (foldinglist[i].style.display=='')
openones=openones + " " + i
}
document.cookie=window.location.pathname+"="+openones
}


function show_text(text_var)
{
 var url="m12"+text_var+".html"
 open(url,"text_window")
}

function show_window(url,w,h)
{
window.open(url,"","width="+w+", height="+h+", toolbar=no,menubar=no,statusbar=no,resizable=0,scrollbars=0")
}


function protect_email(user,site)
{
	document.write('<a class="news" href=\"mailto:' + user + '@' + site + '\">');
    document.write(user + '@' + site + '</a>');
   
    
}

Amount=10; 


Image0=new Image();
Image0.src="img/flake1.gif";
Image1=new Image();
Image1.src="img/flake2.gif";
Image2=new Image();
Image2.src="img/flake3.gif";
Image3=new Image();
Image3.src="img/flake4.gif";
Image4=new Image();
Image4.src="img/flake5.gif";

grphcs=new Array(5)
grphcs[0]="img/flake1.gif"
grphcs[1]="img/flake2.gif"
grphcs[2]="img/flake3.gif"
grphcs[3]="img/flake4.gif"
grphcs[4]="img/flake5.gif"

Ypos=new Array();
Xpos=new Array();
Speed=new Array();
Step=new Array();
Cstep=new Array();
ns=(document.layers)?1:0;
if (ns){
for (i = 0; i < Amount; i++){
var P=Math.floor(Math.random()*grphcs.length);
rndPic=grphcs[P];
document.write("<LAYER NAME='sn"+i+"' LEFT=0 TOP=0><img src="+rndPic+"></LAYER>");
}
}
else{
document.write('<div style="position:absolute;top:0px;left:0px"><div style="position:relative">');
for (i = 0; i < Amount; i++){
var P=Math.floor(Math.random()*grphcs.length);
rndPic=grphcs[P];
document.write('<img id="si" src="'+rndPic+'" style="position:absolute;top:0px;left:0px">');
}
document.write('</div></div>');
}
WinHeight=(document.layers)?window.innerHeight:window.document.body.clientHeight;
WinWidth=(document.layers)?window.innerWidth:window.document.body.clientWidth;
for (i=0; i < Amount; i++){                                                                
 Ypos[i] = Math.round(Math.random()*WinHeight);
 Xpos[i] = Math.round(Math.random()*WinWidth);
 Speed[i]= Math.random()*3+2;
 Cstep[i]=0;
 Step[i]=Math.random()*0.01+0.005;
}
function fall(){
var WinHeight=(document.layers)?window.innerHeight:window.document.body.clientHeight;
var WinWidth=(document.layers)?window.innerWidth:window.document.body.clientWidth;
var hscrll=(document.layers)?window.pageYOffset:document.body.scrollTop;
var wscrll=(document.layers)?window.pageXOffset:document.body.scrollLeft;
for (i=0; i < Amount; i++){
sy = Speed[i]*Math.sin(90*Math.PI/180);
sx = Speed[i]*Math.cos(Cstep[i]);
Ypos[i]+=sy;
Xpos[i]+=sx; 
if (Ypos[i] > WinHeight){
Ypos[i]=-60;
Xpos[i]=Math.round(Math.random()*WinWidth);
Speed[i]=Math.random()*5+2;
}
if (ns){
document.layers['sn'+i].left=Xpos[i];
document.layers['sn'+i].top=Ypos[i]+hscrll;
}
else{
si[i].style.pixelLeft=Xpos[i];
si[i].style.pixelTop=Ypos[i]+hscrll;
} 
Cstep[i]+=Step[i];
}
setTimeout('fall()',5);
}

function movepic(img_name,img_src) {
document[img_name].src=img_src;
}