// Apply CSS3 styles using JQuery (so we don't invalidate our style sheets)

$(document).ready(function(){
	
	// Rounded corners on stuff
	
	$(".rounded, #portlets li div, #content fieldset").css({
		'border-radius' : '6px', 
		'-moz-border-radius' : '6px', 
		'-webkit-border-radius' : '6px'
	});
	
	$("#footer-nav ul li:last-child").css({
		'border-right' :  'none'
	});

});

