$(document).ready(function(){
	
	/*if (window.location.href.substring(30,35)=='') {
		$('#center-container').load('pages/home.php');
		}
	else {
		var adresse = window.location.href.substring(30,35);
		$('#center-container').load('pages/'+ adresse +'.php');
		$('h2').text(adresse);
		} */
		
	$('#center-container').load('pages/home.php');

	$('#nav li').mouseover(function(){
		title = $(this).html();
		if (title=='work') {
			$('h2').css({'border-bottom':'6px solid #767d69'});
		}
		else {
			$('h2').css({'border-bottom':'6px solid #ebefe3'});
		}
		if (title=='contact') {
			$('#button-friends').show();
		}
		else {
			$('#button-friends').hide();
			$('#friends').animate({'margin-left':'360px'},500);
			$('#friends').delay('500').fadeOut();
			$('#button-friends').css({'color':'#AAABA9'});
		}
		if ($('h2').text()!=title) {
			$('#center-container').html('<p id="loading">Chargement ...</p>').load('pages/'+ title +'.php');
			//window.location.href = '#'+title;
			$('h2').text(title);
			$('#nav li').removeClass('navActif');
			$(this).addClass('navActif');
			return false;
		}
	});
	
	$('li').click(function(){
			$('#alerte-clic').fadeIn(100).delay(1500).fadeOut(100);
	});
	
	$('#button-friends').hover(function(){
		$('#friends').show();
		$('#friends').animate({'margin-left':'500px'},500);
		$(this).css({'color':'#000'});
	});
	
});
