$(document).ready(function(){
	$("a").hover(function() {
		$('+ .tip', this).stop().fadeIn(200);
		}, function () {
	  	$('+ .tip', this).stop().fadeOut(200);
	});
	if (window.location.pathname == "http://localhost:8888/Perso/portfolio/www/index.php") {
		alert("plop");
		$("a#index").animate("color: black", 300);
	}
});

function nextProject(project, nextProject) {
	$(project).hide("slide", { direction: "left" }, 1000);
	$(nextProject).show("slide", { direction: "right" }, 1000);
}

function prevProject(project, prevProject) {
	$(project).hide("slide", { direction: "right" }, 1000);
	$(prevProject).show("slide", { direction: "left" }, 1000);
}
