 var $j = jQuery.noConflict();
	$j(document).ready(
		function() {
			var ele=$j("#banner span").length;
							
			animator ={
				intervalId: null,
				
				anime: function(){
					var act=$j("#banner span:visible");
												
					act.fadeOut("slow", function(){
						var act=$j(this);
						var nx = null;
												    
						if (act.is(":last-child")){
							nx = $j("#banner span:first");
						} else {
							nx = act.next();
						} 
						
						var pos = $j.inArray(nx.get()[0],$j("#banner span"));
						nx.fadeIn("slow");
						});    
					}
				}
										  
				$j("#banner span").hide();
				$j("#banner span:first").fadeIn("slow");
				animator.intervalId=setInterval('animator.anime();',4000);
			}
		);