﻿$(document).ready(function() 
{
  $.preloadImages("/Images/Layout/HomeVideo.jpg");
  
  $('#homeVideo').hover(function () {
      var img = $(this).find('img');
      this.oldImage = img.attr('src');
      $(this).find('img').attr('src', '/Images/Layout/HomeVideo.jpg');
    }, function() {
      var img = $(this).find('img');
      $(this).find('img').attr('src', this.oldImage);
  });
});