$(document).ready(function()
{
  $("#home").mouseover(function () {
    $(this).attr("src", "images/home_h.jpg");
  });

  $("#home").mouseout(function () {
    $(this).attr("src", "images/home.jpg");
  });
  $("#aboutus").mouseover(function () {
    $(this).attr("src", "images/aboutus_h.jpg");
  });

  $("#aboutus").mouseout(function () {
    $(this).attr("src", "images/aboutus.jpg");
  });
  $("#contactus").mouseover(function () {
    $(this).attr("src", "images/contactus_h.jpg");
  });

  $("#contactus").mouseout(function () {
    $(this).attr("src", "images/contactus.jpg");
  });
  $("#photogallery").mouseover(function () {
    $(this).attr("src", "images/photogallery_h.jpg");
  });

  $("#photogallery").mouseout(function () {
    $(this).attr("src", "images/photogallery.jpg");
  });
});