// script for secondary page rollovers

var revert = new Array();	//array to save names of images to return to
var inames = new Array('about_us', 'b2b', 'clean_energy', 'core_services', 'contact_us', 'creative_services', 'crisis_communications', 'current_clients', 'financial_services', 'healthcare', 'home','industry_expertise', 'issues_management', 'market_research', 'media_relations', 'not_for_profit', 'our_clients', 'product_service_launches', 'product_support', 'professional_services', 'strategy');

// Preload
if (document.images) {
  var flipped = new Array();
  for(i=0; i< inames.length; i++) {
    flipped[i] = new Image();
    flipped[i].src = "../images/menu/"+inames[i]+"_on.gif";
  }
}

function over(num) {
  if(document.images) {
    revert[num] = document.images[inames[num]].src;
    document.images[inames[num]].src = flipped[num].src;
  }
}
function out(num) {
  if(document.images) document.images[inames[num]].src = revert[num];
}
