$.noConflict();
jQuery(document).ready(function() {
	jQuery('.home-buttons img, .sub-nav img').mouseover(function() {
		t = jQuery(this);
		t.attr('src',t.attr('src').replace('.jpg','-hover.jpg'));
	}).mouseout(function() {
		t = jQuery(this);
		t.attr('src',t.attr('src').replace('-hover.jpg','.jpg'));
	});
});
