// Java Document
current_overID = "";
last_overID = "";
 
function item (img_name,width,height)
  {
 
img_prefix = img_name;
this.slide_img = new Image (width,height);
this.slide_img.src = img_prefix + ".jpg";
this.slide_img.src = "graphics/maps/" + img_prefix + ".jpg";

  }
 
function new_item (img_name,width,height) 
  {
 
item [img_name] = new item (img_name,width,height);
  }
 
function mouseover (itemID)
  {
current_overID = itemID;
if (current_overID != last_overID) {
document.semap.src = item [current_overID].slide_img.src;
  }
}
 
new_item ("nc",500,700);
new_item ("se_usa",500,700);
new_item ("sc",500,700);
new_item ("ga",500,700);
new_item ("fl",500,700);


