/*
 * Update the style of the page when it is finished loading
 */
$(document).ready( function() {

	$("#firstName").css("opacity", "0.5");
	$("#lastName").css("opacity", "0.5");
	$(".date").css("opacity", "0.7");
	
	$("#nav a").css("opacity", "0.7");
	$("#nav a").corner("top 5px");

	$("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("cc:#FFF");

	$("div.date").corner("bite");

	$("div#footer").corner();
	$("div#container").corner("bottom");

	$("#myPicture").corner();
	
	$("#nav a").hover(
	function() {
		$(this).fadeTo("fast", "1.0");
	}, function() {
		$(this).fadeTo("fast", "0.7");
	}
	);

});

