$(document).ready( function() {

	$('#innerContent').css({ position: 'absolute', bottom: '0', right: '0', top: '0', left: '0', backgroundColor: '#fff', zIndex: '10000000' });
	$('#innerContent').fadeOut(100);

//	$('#post_14 a').addClass('nofollow');

	$('a:not(.nofollow)').live( 'click', function() {
		var thisHref = $(this).attr('href');
		$('#innerContent').fadeIn(100, function() {
			window.location = thisHref;
		});
		return false;
	});

});