$(document).ready(function(){
	
	$(".language").css("width", "90px");
	
	$(".language").hover(function(){
		$(this).stop().animate({
			"margin-top": "5px"
		}, 500, 'easeOutBounce', function(){
			$(this).find("p").fadeIn("10");
		});
	}, function(){
		$(this).find("p").hide();
		$(this).stop().animate({
			"margin-top": "15px"
		}, 500, 'easeOutBounce', function(){
		});
	});
	
	
});
