// JavaScript Document

// Rollover images
$(document).ready(function(){
$("img.rolloverImage").hover(
 function()
 {
  this.src = this.src.replace("_out","_over");
 },
 function()
 {
  this.src = this.src.replace("_over","_out");
 }
);
});
