﻿function mammals(){
 var myimages=new Array()
 myimages[1]="images/h_thumb/mam_1.jpg"
 myimages[2]="images/h_thumb/mam_2.jpg"
 myimages[3]="images/h_thumb/mam_3.jpg"
 myimages[4]="images/h_thumb/mam_4.jpg"
 myimages[5]="images/h_thumb/mam_5.jpg"
 myimages[6]="images/h_thumb/mam_6.jpg"
 myimages[7]="images/h_thumb/mam_7.jpg"
 myimages[8]="images/h_thumb/mam_8.jpg"
 myimages[9]="images/h_thumb/mam_9.jpg"

 var ry=Math.floor(Math.random()*myimages.length)

 if (ry==0)
    ry=1

	//document.getElementById("mammals_rend").innerHTML = "<div style='width:293px; height:197px;margin:0 auto; background:url(" + myimages[ry] + ") 16px 12px no-repeat;'><a href='index.php' title='Admin Panel' rel='gb_page_center[660, 500]'><img src='images/h_thumb/homethumb.png' title='Enter for Mammals Gallery' width='293' height='197' border='0'></a></div>"
	document.getElementById("mammals_rend").style.background = "url(" + myimages[ry] + ")"; // ;
	document.getElementById("mammals_rend").style.backgroundPosition  = "35px 20px";
	document.getElementById("mammals_rend").style.backgroundRepeat  = "no-repeat";
	 
	
    //document.write('<img src="'+myimages[ry]+'" border=0 width=200 height=200>')
	//alert(document.getElementById("mammals_rend").innerHTML);
} 
 
 function birds(){
 var mybird=new Array()
 mybird[1]="images/h_thumb/bird_1.jpg"
 mybird[2]="images/h_thumb/bird_2.jpg"
 mybird[3]="images/h_thumb/bird_3.jpg"
 mybird[4]="images/h_thumb/bird_4.jpg"
 mybird[5]="images/h_thumb/bird_5.jpg"
 mybird[6]="images/h_thumb/bird_6.jpg"
 mybird[7]="images/h_thumb/bird_7.jpg"
 mybird[8]="images/h_thumb/bird_8.jpg"
 mybird[9]="images/h_thumb/bird_9.jpg"

 var rbirds=Math.floor(Math.random()*mybird.length)

 if (rbirds==0)
    rbirds=1
	//document.getElementById("birds_rend").innerHTML = "<div style='width:293px; height:197px;margin:0 auto; background:url(" + mybird[rbirds] + ") 16px 12px no-repeat;'><a href='javascript:void(0);'><img src='images/h_thumb/homethumb.png' title='Enter for Birds Gallery' width='293' height='197' border='0'></a></div>"
	document.getElementById("birds_rend").style.background = "url(" + mybird[rbirds] + ")"; // ;
	document.getElementById("birds_rend").style.backgroundPosition  = "35px 20px";
	document.getElementById("birds_rend").style.backgroundRepeat  = "no-repeat";
	
    //document.write('<img src="'+myimages[ry]+'" border=0 width=200 height=200>')
	//alert(document.getElementById("mammals_rend").innerHTML);
} 

 
 function misc(){
 var mymisc=new Array()
 mymisc[1]="images/h_thumb/misc_1.jpg"
 mymisc[2]="images/h_thumb/misc_2.jpg"
 mymisc[3]="images/h_thumb/misc_3.jpg"
 mymisc[4]="images/h_thumb/misc_4.jpg"
 mymisc[5]="images/h_thumb/misc_5.jpg" 
 mymisc[6]="images/h_thumb/misc_6.jpg" 
 mymisc[7]="images/h_thumb/misc_7.jpg" 
 mymisc[8]="images/h_thumb/misc_8.jpg" 
 mymisc[9]="images/h_thumb/misc_9.jpg" 

 var rmisc=Math.floor(Math.random()*mymisc.length)

 if (rmisc==0)
    rmisc=1
	//document.getElementById("misc_rend").innerHTML = "<div style='width:293px; height:197px;margin:0 auto; background:url(" + mymisc[rmisc] + ") 16px 12px no-repeat;'><a href='javascript:void(0);'><img src='images/h_thumb/homethumb.png' title='Enter for Miscl. Gallery' width='293' height='197' border='0'></a></div>"
	document.getElementById("misc_rend").style.background = "url(" + mymisc[rmisc] + ")"; // ;
	document.getElementById("misc_rend").style.backgroundPosition  = "35px 14px";
	document.getElementById("misc_rend").style.backgroundRepeat  = "no-repeat";
	
    //document.write('<img src="'+myimages[ry]+'" border=0 width=200 height=200>')
	//alert(document.getElementById("mammals_rend").innerHTML);
} 

 function nature(){
 var mynature=new Array()
 mynature[1]="images/h_thumb/nature_1.jpg"
 mynature[2]="images/h_thumb/nature_2.jpg"
 mynature[3]="images/h_thumb/nature_3.jpg"
 mynature[4]="images/h_thumb/nature_4.jpg"
 mynature[5]="images/h_thumb/nature_5.jpg"
 mynature[6]="images/h_thumb/nature_6.jpg"
 mynature[7]="images/h_thumb/nature_7.jpg"
 mynature[8]="images/h_thumb/nature_8.jpg"
 mynature[9]="images/h_thumb/nature_9.jpg"

 var rnature=Math.floor(Math.random()*mynature.length)

 if (rnature==0)
    rnature=1
	//document.getElementById("nature_rend").innerHTML = "<div style='width:293px; height:197px;margin:0 auto; background:url(" + mynature[rnature] + ") 16px 12px no-repeat;'><a href='javascript:void(0);'><img src='images/h_thumb/homethumb.png' title='Enter for Nature Gallery' width='293' height='197' border='0'></a></div>"
	
	document.getElementById("nature_rend").style.background = "url(" + mynature[rnature] + ")"; // ;
	document.getElementById("nature_rend").style.backgroundPosition  = "35px 14px";
	document.getElementById("nature_rend").style.backgroundRepeat  = "no-repeat";
	
    //document.write('<img src="'+myimages[ry]+'" border=0 width=200 height=200>')
	//alert(document.getElementById("mammals_rend").innerHTML);
}

function allrun(){
	mammals();
	birds();
	misc();
	nature();
}

//document.body = allrun();
//setInterval(allrun, 2500);

