// JavaScript for Home page Animation


// load images
imgbrite_all = new Image();
imgbrite_all.src = "images/home_all_brite.jpg"; 
imgbrite_fire = new Image();
imgbrite_fire.src = "images/home_firefighter_brite.jpg"; 
imgbrite_police = new Image();
imgbrite_police.src = "images/home_policeman_brite.jpg"; 
imgbrite_business = new Image();
imgbrite_business.src = "images/home_businessman_brite.jpg"; 
imgbrite_nurse = new Image();
imgbrite_nurse.src = "images/home_nurse_brite.jpg"; 
imgbrite_service = new Image();
imgbrite_service.src = "images/home_servicewomen_brite.jpg"; 
imgbrite_dog = new Image();
imgbrite_dog.src = "images/home_dogheadturn.jpg"; 


function bkgrdChange(arg_bkgrdId, arg_ImageName, arg_menuId, arg_color) {
   document.getElementById(arg_bkgrdId).style.background = 'url('+arg_ImageName+') 0 0 no-repeat';
   if (arg_menuId != '') {
     document.getElementById(arg_menuId).style.color = arg_color;
   }
}

function loadevents() {
    // rollover colors
	var rest_color = '#ccc';
	var over_color = '#3d68ae';

    // menu events - these functions are attached to the Industry menu
    document.getElementById('menu_fire').onmouseover = function() {
	  bkgrdChange('homesplash', 'images/home_firefighter_brite.jpg','menu_fire',over_color);
	}
	document.getElementById('menu_fire').onmouseout = function() {
	   bkgrdChange('homesplash', 'images/home_all_brite.jpg','menu_fire',rest_color);
	}
	
	document.getElementById('menu_police').onmouseover = function() {
	 bkgrdChange('homesplash', 'images/home_policeman_brite.jpg','menu_police',over_color);
	}
	document.getElementById('menu_police').onmouseout = function() {
     bkgrdChange('homesplash', 'images/home_all_brite.jpg','menu_police',rest_color);
	}
	
	document.getElementById('menu_funeral').onmouseover = function() {
	  bkgrdChange('homesplash', 'images/home_businessman_brite.jpg','menu_funeral',over_color);
	}
	document.getElementById('menu_funeral').onmouseout = function() {
      bkgrdChange('homesplash', 'images/home_all_brite.jpg','menu_funeral',rest_color);
	}
	
	document.getElementById('menu_hospital').onmouseover = function() {
	 bkgrdChange('homesplash', 'images/home_nurse_brite.jpg','menu_hospital',over_color);
	}
	document.getElementById('menu_hospital').onmouseout = function() {
     bkgrdChange('homesplash', 'images/home_all_brite.jpg','menu_hospital',rest_color);
	}
	
	document.getElementById('menu_training').onmouseover = function() {
	  bkgrdChange('homesplash', 'images/home_servicewomen_brite.jpg','menu_training',over_color);
	}
	document.getElementById('menu_training').onmouseout = function() {
      bkgrdChange('homesplash', 'images/home_all_brite.jpg','menu_training',rest_color);
	}
	
	
	// div events - these events are atached to the transparent divs floating over the team picture.
    document.getElementById('hspot_fireman').onmouseover = function() {
	  bkgrdChange('homesplash', 'images/home_firefighter_brite.jpg','menu_fire',over_color);
	}
	document.getElementById('hspot_fireman').onmouseout = function() {
	   bkgrdChange('homesplash', 'images/home_all_brite.jpg','menu_fire',rest_color);
	}
	
	document.getElementById('hspot_policeman').onmouseover = function() {
	 bkgrdChange('homesplash', 'images/home_policeman_brite.jpg','menu_police',over_color);
	}
	document.getElementById('hspot_policeman').onmouseout = function() {
     bkgrdChange('homesplash', 'images/home_all_brite.jpg','menu_police',rest_color);
	}
	
	document.getElementById('hspot_businessman').onmouseover = function() {
	  bkgrdChange('homesplash', 'images/home_businessman_brite.jpg','menu_funeral',over_color);
	}
	document.getElementById('hspot_businessman').onmouseout = function() {
      bkgrdChange('homesplash', 'images/home_all_brite.jpg','menu_funeral',rest_color);
	}
	
	document.getElementById('hspot_dog').onmouseover = function() {
	  bkgrdChange('homesplash', 'images/home_dogheadturn.jpg','',over_color);
	}
	document.getElementById('hspot_dog').onmouseout = function() {
      bkgrdChange('homesplash', 'images/home_all_brite.jpg','',rest_color);
	}

	
	document.getElementById('hspot_nurse').onmouseover = function() {
	 bkgrdChange('homesplash', 'images/home_nurse_brite.jpg','menu_hospital',over_color);
	}
	document.getElementById('hspot_nurse').onmouseout = function() {
     bkgrdChange('homesplash', 'images/home_all_brite.jpg','menu_hospital',rest_color);
	}
	
	document.getElementById('hspot_servicewomen').onmouseover = function() {
	  bkgrdChange('homesplash', 'images/home_servicewomen_brite.jpg','menu_training',over_color);
	}
	document.getElementById('hspot_servicewomen').onmouseout = function() {
      bkgrdChange('homesplash', 'images/home_all_brite.jpg','menu_training',rest_color);
	}

}

window.onload = loadevents;


