$(document).ready(function(){
	$('#bethel_main_navigation a').hover(function(){
		$(this).find('img.nav_title').animate({right:'72px'}, 200 );
		$(this).find('img.nav_arrow').animate({right:'17px'}, 200 );
	},function(){
		$(this).find('img.nav_title').animate({right:'52px'}, 200 );
		$(this).find('img.nav_arrow').animate({right:'33px'}, 200 );
	});	
});