function bannerFade(){
	
	if ($('.last_image').is(':visible')){
		$(".current_image").delay(5000).fadeOut(600, function() {
			$(".first_image").addClass("current_image");
			$(this).removeClass("current_image");
			$(".first_image").fadeIn(600, function() {
				//Fixes IE's clear-type issue on animated fonts
				if(jQuery.browser.msie) this.style.removeAttribute('filter');
				bannerFade();
			});
		});
	} else {
		$(".current_image").delay(5000).fadeOut(600, function() {
			$(this).next().addClass("current_image");
			$(this).removeClass("current_image").next().fadeIn(600, function() {
				//Fixes IE's clear-type issue on animated fonts
				if(jQuery.browser.msie) this.style.removeAttribute('filter');
				bannerFade();
			});
		});
	};
};

$(document).ready(function(){
	
	$("#banner img").first().addClass("current_image first_image");
	$("#banner img").last().addClass("last_image");
	
	bannerFade();
	
});
