// JavaScript Document




// function to autofill background colors on trs
function alternate(id){

 if(document.getElementsByTagName){  

   var table = document.getElementById(id);  
   var rows = table.getElementsByTagName("tr");  
   for(i = 0; i < rows.length; i++){          

 //manipulate rows

     if(i % 2 == 0){
       rows[i].className = "even";
     }else{
       rows[i].className = "odd";

     }      

   }

 }

}
	
///////////////////////

var link = "";
//var img_name = new Array("green.gif", "magenta.gif");



	//var l = img_name.length;
	var l = 5;
	var rnd_no = Math.floor(l*Math.random());
	//document.write(rnd_no);


	
	
function theLink()
	{
		
//document.write(rnd_no);
if(rnd_no == 0)
		{
			link = '<a href="http://douglas.bc.ca/choose-douglas.html"><img src="http://www.douglas.bc.ca/ip-images/banners/orange.gif" alt="Ignite your potential" name="r_img" width="626" height="177" border="0" /></a>';
			
			/*link = '<a href="http://douglas.bc.ca/choose-douglas.html"><img src="http://www.douglas.bc.ca/ip-images/banners/magenta.gif" alt="Ignite your potential" name="r_img" width="626" height="177" border="0" /></a>';
			
			*/
			//document.r_img.src = "http://www.douglas.bc.ca/ip-images/banners/" + img_name[rnd_no];
		}
		
		
			else if(rnd_no == 1)
				{
					link = 	'<a href="http://www.douglas.bc.ca/tough-times.html"><img src="http://www.douglas.bc.ca/ip-images/banners/green_economy.gif" alt="Ignite your potential" name="r_img" width="626" height="177" border="0" /></a>';
				
				}



		else if(rnd_no == 2)
				{
					link = 	'<a href="http://www.douglas.bc.ca/university-transfer.html"><img src="http://www.douglas.bc.ca/ip-images/banners/magenta_ut.gif" alt="Learn about University Transfer" name="r_img" width="626" height="177" border="0" /></a>';
				
				
				}
			
		else if (rnd_no == 3)  
				{
			
						link = 	'<a href="http://www.douglas.bc.ca/celebrate40.html"><img src="http://www.douglas.bc.ca/ip-images/banners/celebrate40-banner.gif" alt="Celebrate Douglas Days" name="r_img" width="626" height="177" border="0" /></a>';
				
				}	
				
				
		else if(rnd_no == 4)
				{
					link = 	'<a href="http://www.douglas.bc.ca/celebrate40.html"><img src="http://www.douglas.bc.ca/ip-images/banners/celebrate40-banner.gif" alt="Celebrate Douglas Days" name="r_img" width="626" height="177" border="0" /></a>';
				
				
				}		
				
				
		
		return link;
		
		}
			
	
