/*
// UNA CREACIÓ DE: GM CLOUD DESIGN
// info@gmcd.cat
// http://www.gmcd.cat
*/
function banner(){
	var $active = $("#banner img.active");
	var $next = $active.next();
	
	if( $next.length == 0){
		$next = $('#banner img:first');
	}
	
	$next.addClass("next");
	$active.fadeTo(1000,0,function(){
		$active.removeClass("active");
		$active.css({opacity:1});
		$next.addClass("active");
		$next.removeClass("next");
	});
};
setInterval("banner()",3000);
