$(function(){
	$('#header a img, #section2_text a img').each(function(){
		$(this).hover(function(){
			$(this).attr('src',$(this).attr('src').replace('.jpg','_over.jpg'));
		},function(){
			$(this).attr('src',$(this).attr('src').replace('_over.jpg','.jpg'));
		});
	 });
});