// 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-links ul li:first-child").css({
		'border-left'  : '0',
		'padding-left' : '0'
	});

});

