function socializ(u,t) {

	var f = '/socimg/'; /* ïóòü ê ïàïêå ñ èçîáðàæåíèÿìè êíîïîê */

	document.write('<div id="socializ"></div>');
	var s = $('#socializ');

	s.append(
		'<a href="http://twitter.com/home?status=' + t + ' - ' + u + '" title="Twitter`da Paylaþ"><img src="' + f + 'twitter.png" alt="" /></a>' +
		'<a href="http://www.google.com/buzz/post?message=' + t + '&url=' + u + '" title="Google Buzz`da Paylaþ"><img src="' + f + 'google-buzz.png" alt="" /></a>' +
		'<a href="http://www.friendfeed.com/share?title=' + t + ' - ' + u + '" title="FriendFeed`de Paylaþ"><img src="' + f + 'friendfeed.png" alt="" /></a>' +
		'<a href="http://www.facebook.com/sharer.php?u=' + u + '" title="Facebook`da Paylaþ"><img src="' + f + 'facebook.png" alt="" /></a>' +
		'<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=' + u + '" title="Myspace`de Paylaþ"><img src="' + f + 'myspace.png" alt="" /></a>' +
		'<a href="http://www.livejournal.com/update.bml?event=' + u + '&subject=' + t + '" title="livejournal.com`da Paylaþ"><img src="' + f + 'livejournal.png" alt="" /></a>' +
		'<a href="http://delicious.com/save?url=' + u + '&title=' + t + '" title="Delicious`da Paylaþ"><img src="' + f + 'delicious.png" alt="" /></a>' +
		'<a href="http://digg.com/submit?phase=2&url=' + u + '&title=' + t + '" title="Digg`de Paylaþ"><img src="' + f + 'digg.png" alt="" /></a>' +
		'<a href="http://www.stumbleupon.com/submit?url=' + u + '&title=' + t + '" title="StumbleUpon`da Paylaþ"><img src="' + f + 'stumbleupon.png" alt="" /></a>' +
		'<a href="http://www.google.com/bookmarks/mark?op=edit&output=popup&bkmk=' + u + '&title=' + t + '" title="Google`da Paylaþ"><img src="' + f + 'google.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}); }
	);

}
