$(document).ready( function(){

  $('a[rel*=facebox]').facebox();

	$("#nav a").hover(function(){
				$(this).fadeTo("fast", 0.7); // This should set the opacity to 100% on hover
				},function(){
				$(this).fadeTo("fast", 1.0); // This should set the opacity back to 60% on mouseout
				});
				
	$('#nnav a').click(function(){
					$('#nav a').css('background-color', '#bbb');
						$('#contentholder').fadeOut();$('#contentholder').load(this.href+' #content', function(){
						$('#contentholder').show();
						});
				$(this).css('background-color', '#666');
				$(this).blur();
				return false;
					});

	$('.ppagelink').click(function(){
					$('#nav a').css('background-color', '#bbb');
						$('#contentholder').fadeOut();$('#contentholder').load(this.href+' #content', function(){
						$('#contentholder').show();
						});
				$(this).blur();
				return false;
					});					

			
});
