$(document).ready(function(){
	$("#image_switch img").hover(
		function (){
			$(this).attr('src',$(this).attr('src').replace('.jpg','.gif'));		
		}, function (){
			$(this).attr('src',$(this).attr('src').replace('.gif','.jpg'));		
	});
});
