var t;
$("#headerimg div.current").ready(function(){
	t=setTimeout("executeLoop()",5000);
	
});
function executeLoop() {
    $("#headerimg div.current").fadeOut(1700,function(){
		if ($(this).next().length == 0) {
			$("#headerimg div").first().fadeIn(1400, function(){
				$(".current").removeClass("current");
				$(this).addClass("current");
				t = setTimeout("executeLoop()", 5000);
			});		
		}
		else {
			$(this).next().fadeIn(1400, function(){
				$(".current").removeClass("current");
				$(this).addClass("current");
				t = setTimeout("executeLoop()", 5000);
			});
		}
	});
}

