
function loadContent ( url ) {
    var plainHTML = url.match( /html$/i );
    var opts = {};
    if ( plainHTML ) { opts = { method: 'get' }; }
    opts.evalScripts = true;
    new Ajax.Updater( "left", url, opts );
}



$(document).ready( function() {

//	$('#navlist a').click( function() {
//		$('#sub_left,#sub_right,#sub_content').fadeOut('slow');
//		loadContent( this.id+'.html' );
//		$('#sub_left,#sub_right,#sub_content').fadeIn('slow');
//	});

//	$('a#current').hover(function() { $('a#current').css('backgroundImage','none') });
	$('a#current').click(function() { return false; });
	
});

