// JavaScript Document
/*Randome image for sub pages*/
function random_image() 
{ 
image_array = new Array(); 
image_array[0] = '../images/refresh/adp_small_capability.jpg'; 
image_array[1] = '../images/refresh/adp_small_predictability.jpg'; 
image_array[2] = '../images/refresh/adp_small_productivity.jpg'; 
image_array[3] = '../images/refresh/adp_small_proficiency.jpg'; 
image_array[4] = '../images/refresh/adp_small_visibility.jpg'; 

count = image_array.length; 
random = Math.floor(Math.random() * count); 

document.getElementById('bgChangeSub').style.backgroundImage = "url(" + image_array[random] + ")"; 
} 
