$(document).ready(function() {
	
	//Remove the border next to the "topic" images.
	$('.content tr.post td > img').each(function() {
		$(this).parent().css('border-right', 'none');	
		$(this).parent().css('padding-left', '20px');
		$(this).parent().css('padding-right', '0');
	});
	$('.content tr.post_alt td > img').each(function() {
		$(this).parent().css('border-right', 'none');	
		$(this).parent().css('padding-left', '20px');
	});
	
	//Bottom graph paper for single forum page.
	$('.yafactiveusers').parents('.post').addClass('postFooter');
	$('.yafactiveusers').parents('.post').siblings('.header2').addClass('postFooter2');
	
	//Remove "The Rocket Summer" from the title of the forum.
	var myText = $('.yafPageLink a:first-child').text();
	var newText = myText.substring(18);
	$('.yafPageLink a').text(newText);
	
	//Change the link seperator.
	$('.linkSeperator').each(function() {
		$(this).text('/');					  
	});
	
});
