$(document).ready(function(){
	 $('div.country_links a').mouseover(function(){
	 	$('.overed').removeClass("overed");
	 	$(this).parent().addClass("overed")
		$('span',$(this).prev('div')).animate({marginLeft: '-18'}, 1000) 
	 })
	 $('div.country_links a').mouseout(function(){
	 	 $('span',$(this).prev('div')).animate({marginLeft: '-130'}, 1000); 
	 })

});

