function socializ(u,t) {

	var m1 = 10; /* расстояние от начала страницы до плавающей панели */
	var m2 = 10; /* расстояние от верха видимой области страницы до плавающей панели */
	var f = '/documents/templates/bilgiteknolojileri/images/socials/'; /* путь к папке с изображениями кнопок */

	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://www.facebook.com/sharer.php?u=' + u + '" title="Facebook ta paylaş"><img src="' + f + 'facebook.png" alt="" /></a>' +
		'<a href="http://twitter.com/home?status=' + t + ' - ' + u + '" title="Twitter da paylaş"><img src="' + f + 'twitter.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}); }
	);
}
