// we play nice with others
jQuery.noConflict();

jQuery(document).ready(function() {
  jQuery("#nav img").hover(function() {
	jQuery(this).attr("src", jQuery(this).attr("src").split("_normal").join("_hover"));
  }, function() {
	jQuery(this).attr("src", jQuery(this).attr("src").split("_hover").join("_normal"));
  });
});