function socializ(u,t) {

	var m1 = 120;
	var m2 = 20;
	var f = 'http://www.mododl.com/images/social/';

	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 rel="nofollow" href="http://twitter.com/home?status=' + t + ' - ' + u + '" title="Tweet This"><img src="' + f + 'twitter.png" alt="" /></a>' +		
		'<a rel="nofollow" href="http://www.facebook.com/sharer.php?title=' + t + '&u=' + u + '" title="Send to Facebook"><img src="' + f + 'facebook.png" alt="" /></a>' +
		'<a rel="nofollow" href="http://www.friendfeed.com/share?title=' + t + ' - ' + u + '" title="Send to FriendFeed"><img src="' + f + 'friendfeed.png" alt="" /></a>' +
		'<a rel="nofollow" href="http://feeds.feedburner.com/Mododlcom"><img src="' + f + 'feed.png" alt="" /></a>' +
		'<a rel="nofollow" href="http://www.google.com/buzz/post?message=' + t + '&url=' + u + '" title="Send to Google Buzz"><img src="' + f + 'google-buzz.png" alt="" /></a>' +
		'<a rel="nofollow" href="http://delicious.com/save?url=' + u + '&title=' + t + '" title="Send to Delicious"><img src="' + f + 'delicious.png" alt="" /></a>' +
		'<a rel="nofollow" href="http://www.google.com/bookmarks/mark?op=edit&output=popup&bkmk=' + u + '&title=' + t + '" title="Send to Google"><img src="' + f + 'google.png" alt="" /></a>' +
		'<a rel="nofollow" href="http://www.mister-wong.com/index.php?action=addurl&bm_url=' + u + '&bm_description=' + t + '" title="Сохранить закладку в Мистер Вонг"><img src="' + f + 'mister-wong.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}); }
	);

}

