// JavaScript Document

  $(document).ready(function()
{
  $('.tdBackgroundN').hover(function() {
//alert("hover");
    //$(this).attr("src", $(this).attr("src").replace("N.", "H."));
	$(this).removeClass("tdBackgroundN");
    $(this).addClass("tdBackgroundHover");
  }, 
  
  function() {
   // $(this).attr("src", $(this).attr("src").replace("H.", "N."));
	$(this).removeClass("tdBackgroundHover");
    $(this).addClass("tdBackgroundN"); 
	
  });
  
  
  	// icon rollover
	$('#RedIconTable img').hover(function()
	                             {
		                             thisSrc = $(this).attr("src");
		                             $(this).attr("src",thisSrc.replace("N", "H"));
	                             }
	                             , function()
	                             {
		                             $(this).attr("src",thisSrc.replace("H", "N"));
	                             }
	                            );
}
  
  
  
  
});

