$(document).ready(function(){

$("#phone-container strong").hover(function(){
	$(this).stop().animate({right:'0px'},{queue:false,duration:200});
}, function(){
	$(this).stop().animate({right:'-130px'},{queue:false,duration:200});
});


});
