function imageOneFade(){
  $('#projects > div:nth-child(1)').fadeIn(4000, function(){ setTimeout("$('#projects > div:nth-child(1)').fadeOut(4000); imageTwoFade()", 8000); })
}
function imageTwoFade(){
  $('#projects > div:nth-child(2)').fadeIn(4000, function(){ setTimeout("$('#projects > div:nth-child(2)').fadeOut(4000); imageThreeFade()", 8000); })
}
function imageThreeFade(){
  $('#projects > div:nth-child(3)').fadeIn(4000, function(){ setTimeout("$('#projects > div:nth-child(3)').fadeOut(4000); imageFourFade()", 8000); })
}
function imageFourFade(){
  $('#projects > div:nth-child(4)').fadeIn(4000, function(){ setTimeout("$('#projects > div:nth-child(4)').fadeOut(4000); imageOneFade()", 8000); })
}

$(document).ready(function() {
	setTimeout("imageOneFade()", 2000)
});