// 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'
	});
	
	$(".fixed div.container, .hybrid div.container").css({
		'border-bottom-left-radius' : '9px', 
		'border-bottom-right-radius' : '9px', 
		'-moz-border-radius-bottomleft' : '9px', 
		'-moz-border-radius-bottomright' : '9px', 
		'-webkit-border-bottom-left-radius' : '9px', 
		'-webkit-border-bottom-right-radius' : '9px'
	});
	
	$("#footer-nav ul li:last-child").css({
		'border-right' :  'none'
	});

});

