$(document).ready(function(){
	$('tr.forums_tr:nth-child(odd)').addClass('odd');
	$('div.post_div:nth-child(odd)').addClass('odd');
	
	$('.big_body .page').each(
	function()
	{
		if($(this).get(0).childNodes.length<4)
		{}
		else
		{
			$(this).css('min-height','1px')
		}
	}
	)
	
	$('.big_body .page_inner').each(
	function()
	{
		if($(this).get(0).childNodes.length<4)
		{}
		else
		{
			$(this).css('min-height','1px')
		}
	}
	)
	
});

