$(document).ready(function(){
	var sIconsAnimateSpeed = 400;

	$(".b-social-icons__item").each(function(){
		$(this).find('iframe:first').addClass('first');

		$(this).hover(function(){
				var item = $(this);
				item.stop().animate({
						width: 125
					},
					sIconsAnimateSpeed,
					function(){
						item.css({overflow: "visible"})
					}
				)
			},function(){
				var item = $(this);
				item.stop().animate({
						width: 34
					},
					sIconsAnimateSpeed,
					function(){
						item.css({overflow: "hidden"})
					}
				)
			}
		)
	})
});
