// Some JQuery to enhance the theme

var $j = jQuery.noConflict();

$j(document).ready(function() {
	
	$j('ul>li:last-child').addClass('last');

	$j('ul>li:first-child').addClass('first');
	
	$j('#sidebar div:first-child').addClass('first');

});
