$( document ).ready ( function () {
	$('#title').html ( '<span style="color:#F92672">&lt;?php</span> <span style="color:#66D9EF">Blog</span> ( <span style="color:#AE81FF">1</span>, <span style="color:#E6DB74">&quot;d&eacute;veloppeur&quot;</span>, <span style="color:#E6DB74">&quot;neurasth&eacute;nique&quot;</span> ) <span style="color:#F92672">?&gt;</span>' );

	/* ----- */

	$( '#close' ).click ( function () {
		if ( $( '#content' ).hasClass ( 'bright' ) ) {
			$('#content').removeClass ( 'bright' );
			$('.post').removeClass ( 'bright' );
			$('.post-infos').removeClass ( 'bright' );
		}
		else {
			$('#content').addClass ( 'bright' );
			$('.post').addClass ( 'bright' );
			$('.post-infos').addClass ( 'bright' );
		}


		/*
		if ( $( '#close' ).hasClass ( 'off' ) ) {
			$( '#footer' ).fadeOut ( 1500, function () {
				$( '#content' ).fadeIn ( 1500, function() {} );
				$( '#footer' ).fadeIn ( 1500, function () {} );
			} );

			$( '#close' ).removeClass ( 'off' );
		}
		else {
			$( '#content' ).fadeOut ( 1500, function () {} );

			$( '#footer' ).fadeOut ( 1500, function () {
				$( '#footer' ).fadeIn ( 1500, function () {} );
			} );

			$( '#close' ).addClass ( 'off' );
		}
		*/
	});
});

