$(document).ready(function() {

//roll over images for menu
$("#splash_nav img:not(.selected)").hover(
 function() {
  this.src = this.src.replace(".png","_ov.png");
 }, function() {
  this.src = this.src.replace("_ov.png",".png");
 }
);


  $("#c6r_restoration").hover(
    function() {
      $("#c6rs").attr('src','img/splash_c6rs_ov.png');
    },
    function() {
      $("#c6rs").attr('src','img/splash_restoration.png');
    }
  );

  $("#preview_close").click(function() {
      $("#lemans").hide("slow");
      return false;
    }
  );

});


