i = -1;
maximum = 7;
var projectInfo;
beingShown = false;
shown = false;

$(document).ready(function(){
$(".project-text").css({ display: "none" });
$(".splash-left").css({ display: "none" });
$(".splash-right").css({ display: "none" });
	$(".project-info").hover(function() {
	  $(".project-text", this).fadeIn(800);}, function() {
	  $(".project-text", this).fadeOut(800);
	});
});
function fader() {
if (i<=maximum) {
$("#splash"+i).addClass("active");
$("#splash"+i).fadeIn(800);
i+=1;
imageTimeout = setTimeout(fader,400);
} else {
clearTimeout(imageTimeout);
}
};
$(window).load(function() {
fader();
});