var selRec = Math.ceil($("#banners a").length*Math.random());
	setTimeout ( "changeRec()", 4000 );

	//if((selRec+4)>$("#banners a").length)
		//selRec = selRec-8;
	selRec = 1;
	jQuery("#banners a:nth-child("+selRec+")").fadeIn();
	jQuery("#banners a:nth-child("+(selRec+1)+")").fadeIn();
	jQuery("#banners a:nth-child("+(selRec+2)+")").fadeIn();
	jQuery("#banners a:nth-child("+(selRec+3)+")").fadeIn();
	
	
	
	
	function changeRec(){
		jQuery("#banners a:nth-child("+(selRec+1)+")").fadeOut();
		jQuery("#banners a:nth-child("+(selRec+2)+")").fadeOut();
		jQuery("#banners a:nth-child("+(selRec+3)+")").fadeOut();
		jQuery("#banners a:nth-child("+selRec+")").fadeOut(function(){
				if((selRec+4)>$("#banners a").length)
					selRec = 1;
				else
					selRec = selRec+4; 	 

			jQuery("#banners a:nth-child("+selRec+")").fadeIn();
			jQuery("#banners a:nth-child("+(selRec+1)+")").fadeIn();
			jQuery("#banners a:nth-child("+(selRec+2)+")").fadeIn();
			jQuery("#banners a:nth-child("+(selRec+3)+")").fadeIn();
			
		});
		

		setTimeout ( "changeRec()", 4000 );
	}

