$(function(){
	$('#outer').wrap('<div id="juscasino" />');
	$('#container, #news').append('<div class="clear" />');

	/* --- News --- */
	$('#news .recent, #news .list').sameHeight();
	
	/* --- Categories --- */
	$('#categories').each(function(){
		$(this).find('td:first, th:first').addClass('first')
		$(this).find('td:last, th:last').addClass('last')
	})
	

	/* --- Date --- */
	$('small.date, #news .list small').each(function(){
		var date = $(this).text();
		var abbrs = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'];
		var year = date.substr(0,4);
		var month = new Number(date.substr(5,2));
		var day = date.substr(8,2);
		var formatted_date = day + ' ' + abbrs[month-1] + ' ' + year;
		$(this).html(formatted_date);
	})
})

