function socializ(u,t) {

	var m1 = 107; /* расстояние от начала страницы до плавающей панели */
	var m2 = 107; /* расстояние от верха видимой области страницы до плавающей панели */
	var f = 'http://animarium.ru/wp-content/socialbutton/socializ-floating-panel/i/'; /* путь к папке с изображениями кнопок */

	document.write('<div id="socializ"></div>');

	(function($) {
	$(function() {

		var s = $('#socializ');
		s.css({top: m1});
		function margin() {
			var top = $(window).scrollTop();
			if (top+m2 < m1) {
				s.css({top: m1-top});
			} else {
				s.css({top: m2});
			}
		}
		$(window).scroll(function() { margin(); })

		s.append(
			'<a href="http://animarium-team.blogspot.com/" title="Мы в Блоггере" target="_blank"><img src="' + f + 'blogger.png" alt="" /></a>' +
			'<a href="http://vkontakte.ru/club21046068" title="Наша группа во ВКонтакте" target="_blank"><img src="' + f + 'vkontakte.png" alt="" /></a>' +
			'<a href="http://twitter.com/animarium" title="Наш Твиттер" target="_blank"><img src="' + f + 'twitter.png" alt="" /></a>' +
			'<a href="http://animarium.ru/feed/rss/" title="Подписаться на новости"><img src="' + f + 'rss.png" alt="" /></a>' +
			'<a href="http://animarium.ru/o-nas/" title="Обратная связь" target="_self"><img src="' + f + 'gmail.png" alt="" /></a>' +
			'<a href="http://animarium.ru/o-nas/wtf/" title="Правила" target="_self"><img src="' + f + 'faq.png" alt="" /></a>' +
			'<a href="http://animarium.ru/category/novosti/interesnosti/" title="Интересности" target="_self"><img src="' + f + 'inter.png" alt="" /></a>' +
			'<a href="http://animarium.ru/category/novosti/zametki/" title="Заметки" target="_self"><img src="' + f + 'zamet.png" alt="" /></a>' +
		'');

		s.find('a').attr({target: '_blank'}).css({opacity: 0.5}).hover(
			function() { $(this).css({opacity: 1}); },
			function() { $(this).css({opacity: 0.7}); }
		);
		s.hover(
			function() { $(this).find('a').css({opacity: 0.7}); },
			function() { $(this).find('a').css({opacity: 0.5}); }
		);

	})
	})(jQuery)

}
