//---------------------------------------------------------
// Preload images
  career_off = new Image();
  career_off.src = "images/career_off.jpg"; 
  children1_off = new Image();
  children1_off.src = "images/children1_off.jpg";
  children2_off = new Image();
  children2_off.src = "images/children2_off.jpg";
  destiny_off = new Image();  
  destiny_off.src = "images/destiny_off.jpg";
  family_off = new Image();
  family_off.src = "images/family_off.jpg";
  focus_off = new Image();
  focus_off.src = "images/focus_off.jpg";
  friendship_off = new Image();
  friendship_off.src = "images/friendship_off.jpg";
  opportunity_off = new Image();
  opportunity_off.src = "images/opportunity_off.jpg";
  parenting_off = new Image();
  parenting_off.src = "images/parenting_off.jpg";
  relationship_off = new Image();
  relationship_off.src = "images/relationship_off.jpg";
  romance_off = new Image();
  romance_off.src = "images/romance_off.jpg";  
//------------------------------------------------------------------
  career_on = new Image();
  career_on.src = "images/career_on.jpg"; 
  children1_on = new Image();
  children1_on.src = "images/children1_on.jpg"; 
  children2_on = new Image();
  children2_on.src = "images/children2_on.jpg";
  destiny_on = new Image();  
  destiny_on.src = "images/destiny_on.jpg";
  family_on = new Image();
  family_on.src = "images/family_on.jpg";
  focus_on = new Image();
  focus_on.src = "images/focus_on.jpg";
  friendship_on = new Image();
  friendship_on.src = "images/friendship_on.jpg";
  opportunity_on = new Image();
  opportunity_on.src = "images/opportunity_on.jpg";
  parenting_on = new Image();
  parenting_on.src = "images/parenting_on.jpg";
  relationship_on = new Image();
  relationship_on.src = "images/relationship_on.jpg";
  romance_on = new Image();
  romance_on.src = "images/romance_on.jpg";

//---------------------------------------------------------
// Image swap 
function imgOn(imgName){	
   	document[imgName].src = eval(imgName + "_on.src");	
}
function imgOff(imgName) {   	
	document[imgName].src = eval(imgName + "_off.src");	
}
//---------------------------------------------------------