jQuery(document).ready(function(){
	jQuery('ul li:first-child').addClass('first');
	jQuery('ul li:last-child').addClass('last');
	
	jQuery('tr:first-child').addClass('first');
	jQuery('tr:last-child').addClass('last');
	
	jQuery('td:first-child').addClass('first');
	jQuery('td:last-child').addClass('last');


	//jQuery('.widget ul').addClass('clearfix');

	//_all_a = jQuery('.widget a');
	
	//_all_a.each(function(){
		//jQuery(this).html('<span>'+$(this).html()+'</span>');
	//});

});
