jQuery.noConflict();
jQuery(document).ready(function(){
	// dodaje napis "więcej" do każdej wiadomości w boksach po prawej
	jQuery(".rightCont > ul#timeliness > li > a").append('<span class="more">więcej&#160;&#187;</span>');

	// dodaje kolor do ostatniego elementu w wearehere
	jQuery("#wearehere a:last").addClass("now");

	// usuwa border z ostatniego elementu w "paging"
	jQuery("#paging > a:last, #komentarze > #paging > a:last").css({border:'none'});

	// dodaje klase "borderB" która usuwa border z ostatniego elementu w listach
	jQuery("ul#sub_arch li:last").addClass("borderB");

	var titleTag = jQuery(".titleTag").text();
	if (titleTag != '') {
		jQuery(".left > p.title").remove();
	}
});
