/*
 * Update the style of the page when it is finished loading
 */
$(document).ready( function() {

	$("#nav > li.").corner("top 5px");
	$("#nav > li.").css("opacity", "0.7")

	$("div.comments").corner();
	
	/*
	 * We want the sideBanner to be the same height as the rest of the content
	 * on the page.
	 */
	$("div#sideBanner").height($("div#content").height());
	$("div#sideBanner").corner();

	$("div.date").corner("bite");

	$("div#footer").corner();
	$("div#container").corner("bottom");

	$("#myPicture").corner();
	
	$("#nav > li.").hover(
	function() {
		$(this).fadeTo("fast", "1.0");
	}, function() {
		$(this).fadeTo("fast", "0.7");
	}
	);

});
