function socializ(u,t) {

	var m1 = 140;
	var m2 = 20; 
	var f = 'http://videoua.net/skins/default_new/img/i/'; 

	document.write('<div id="socializ"></div>');
	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://twitter.com/home?status= ' + t + ' - ' + u + '" title="Добавить Videoua.net в Twitter" target="_blank" rel="nofollow"><img src="' + f + 'twitter.png" alt="" /></a>' +
	  '<a href="http://www.google.com/reader/link?url=' + u + '&title=' + t + '&srcURL=http://videoua.net/" title="Добавить VideoUA.Net в Google Buzz" target="_blank" rel="nofollow"><img src="' + f + 'google-buzz.png" alt="" /></a>' +
		'<a href="http://www.facebook.com/sharer.php?u=' + u + '" title="Поделиться в Facebook" target="_blank" rel="nofollow"><img src="' + f + 'facebook.png" alt="" /></a>' +
		'<a href="http://vkontakte.ru/share.php?url=' + u + '" title="Поделиться ВКонтакте" target="_blank" rel="nofollow"><img src="' + f + 'vkontakte.png" alt="" /></a>' +
		'<a href="http://connect.mail.ru/share?share_url=' + u + '" title="Поделиться в Моем Мире" target="_blank" rel="nofollow"><img src="' + f + 'moy-mir.png" alt="" /></a>' +
		'<a href="http://www.livejournal.com/update.bml?event=' + u + '&subject=' + t + '" title="Опубликовать в своем блоге livejournal.com"><img src="' + f + 'livejournal.png" alt="" /></a>' +
		'<a href="http://delicious.com/save?url=' + u + '&title=' + t + '" title="Сохранить закладку в Delicious" target="_blank" rel="nofollow"><img src="' + f + 'delicious.png" alt="" /></a>' +
		'<a href="http://www.google.com/bookmarks/mark?op=edit&output=popup&bkmk=' + u + '&title=' + t + '" title="Сохранить закладку в Google" target="_blank" rel="nofollow"><img src="' + f + 'google.png" alt="" /></a>' +
		'<a href="http://bobrdobr.ru/add.html?url=' + u + '&title=' + t + '" title="Забобрить" target="_blank" rel="nofollow"><img src="' + f + 'bobrdobr.png" alt="" /></a>' +
		'<a href="http://memori.ru/link/?sm=1&u_data[url]=' + u + '&u_data[name]=' + t + '" title="Сохранить закладку в Memori.ru" target="_blank" rel="nofollow"><img src="' + f + 'memori.png" alt="" /></a>' +
		'<a href="http://www.friendfeed.com/share?title=' + t + ' - ' + u + '" title="Добавить в FriendFeed" target="_blank" rel="nofollow"><img src="' + f + 'friendfeed.png" alt="" /></a>' +
	'');

	s.find('a').css({opacity: 0.6}).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}); }
	);

}
