function showSharedButtons( url, title ){
	var res = '<div id="sharbuts">'
			+ '<a rel="nofollow" target="_blank" id="face" href="http://www.facebook.com/share.php?u=' + url + '"> </a>'
			+ '<a rel="nofollow" target="_blank" id="jj" href="http://www.livejournal.com/update.bml?event=' + url + '&subject=' + title + '"> </a>'
			+ '<a rel="nofollow" target="_blank" id="tw" href="http://twitter.com/share?url=' + url + '&text=' + title + '"> </a>'
			+ '<a rel="nofollow" target="_blank" id="vkont" href="http://vkontakte.ru/share.php?url=' + url + '"> </a>'
			+ '<a rel="nofollow" target="_blank" id="mailru" href="http://connect.mail.ru/share?share_url=' + url + '"> </a>'
			+ '<a rel="nofollow" target="_blank" id="odn" href="http://www.odnoklassniki.ru/dk?st.cmd=addShare&st._surl=' + url + '&title=' + title + '"> </a>'
			+ '</div>';
	document.write( res );
}

$(function(){

	$('#remr').html('<div class="remright">Богословские материалы сайта не преследуют цель увеличения числа верующих, а лишь призваны расширить кругозор читающего!</div>');
	
	// isset #newArticles
	if( $('#newArticles').length ){
		// подгружаем новые статьи
		$.ajax({
			url: '/ajax.php',
			type: 'post',
			dataType: 'json',
			data: {
				src: 'newArticles',
				state: 1 
			},
			error: function(){
				//alert( 'ошибка ajax запроса' );
			},
			success: function ( response ){
				out = '</div><div class="hbreak"></div><div class="newart"><h3>Новые материалы:</h3>';
//				var items = response.items;
//				for( var i=0; i < items.length; i++ ){
//					res += items[i].a';
//				} 
				out = out + response.reshtml;
				$( '#newArticles' ).html( out );
			}
		});		

	}
	
});

