$(function() {
// Первый заголовок в статьях - без отступа
	$('#td_content').children(':header:first').css('margin-top','0');
// Вызываем функцию показа наших титлов
	show_our_title ();

});
//================
function show_our_title () {
	if ($('#our_title').size() == 0) {
		$('<div id="our_title"></div>').appendTo('BODY').hide();
	}
  $('[ps_title]').mouseover(
  	function(event) {
			$('#our_title').empty().append($(this).attr('ps_title')).show();

			$(this).mousemove(
		  	function(event) {
		  		$('#our_title')
		  		  .css('left', event.pageX - 105 + 'px')
		  		  .css('top', event.pageY + 22 + 'px');
		  	}
		  );

			$(this).mouseout(
		  	function(event) {$('#our_title').hide();}
		  );
  	}
  );
}


