﻿jQuery.fn.delay = function(time,func){
	return this.each(function(){
		setTimeout(func,time);
	});
};

jQuery().ready(function(){

	$("a#accueil span.fade1").hide();
	$("a#accueil span.fade2").hide();
	$("a#accueil span.fade1").fadeIn(2000);
	$(this).delay(1000,function(){
	$("a#accueil span.fade2").fadeIn(2000);
	});

	
});
