//this function includes all necessary js files for the application   
function include(file)   
{   
  
  var script  = document.createElement('script');   
  script.src  = file;   
  script.type = 'text/javascript';   
  script.defer = true;   
  
  document.getElementsByTagName('head').item(0).appendChild(script);   
  
}   
  
/* include any js files here */   
include('rand_image.js');  
include('rand_article.js');  


function random_feature()
{
var rannum = Math.floor(Math.random() * 3);


switch(rannum)
{
case 0:

mostrecentarticle();

break;


case 1:

document.writeln('<p><a href="Arnoldheight.html"><IMG SRC="arnoldheightscreenshot.jpg" WIDTH=140  ></a>');
document.writeln('<a href="Arnoldheight.html"><FONT color=#ffffff>ArnoldHeight The Game<BR></FONT></a></p>'); 


break;

case 2:

recentimage();

break;

}

}


function all_features()
{
mostrecentarticle();

document.writeln('<p><a href="Arnoldheight.html"><IMG SRC="arnoldheightscreenshot.jpg" WIDTH=140  ></a>');
document.writeln('<a href="Arnoldheight.html"><FONT color=#ffffff>ArnoldHeight The Game<BR></FONT></a></p>'); 

recentimage();
}



