$(function() {
	
	
	var divs = $("#content div");
	divs.hide();
	var currentDiv = $("#about");	
	currentDiv.show();
	
	jLink = $("#navbar a");
	$("#navbar a:first").css({'font-weight':'bold','text-transform':'uppercase'});
	jLink.click( function() {
		jLink.css({'font-weight': 'normal', 'text-transform':'capitalize'});	  
		$(this).css({'font-weight': 'bold', 'text-transform':'uppercase'});
		$("#content div").fadeOut(50);
		currentDiv = $("#" + this.rel).fadeIn(1000);

		return (false);
	});
		
});