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(){
// begin file

color = '';
cnt = 0;
$('.btbl tr').each( function(){
	
	if( $(this).attr('class') == 'pitem' ){
		//$(this).children('td').css( 'border-top', '1px solid red' );
		if( cnt == 0 || color == '' ){
			color = 'none'; cnt = 1;
		} else {
			color = '#ddf'; cnt = 0;
		}
	}
	if( $(this).attr('class') == 'subpart' ){
		color = '';
	}
	$(this).css( 'background', color );

});

// end file
});
