$(document).ready(function() {
	
	//rounded corner effect
	$("div.navbar").corner("round top br");
	$("div.sidebar").corner("round bottom");
	$("div.admin_bar").corner("round bottom");
	
	//sidebar link hover effect
	$("a.sidebar").hover(function() {
		$(this).parent().css({'background-color':'#2D2E2C'});
	}, function() {
		$(this).parent().css({'background-color':'#364A3A'});
	});
});
