var totale1 = 0;
var asteapta1 = 0;

function showPromo1(promotie1) {
	clearTimeout(asteapta1);
	promotie_curenta1 = promotie1;
	
	$('#banner1 img').css('display', 'none');
	$('#banner1 img:eq('+promotie_curenta1+')').css('display', 'block');
	
	asteapta1 = setTimeout('showPromo1(promotie_curenta1 < totale1 ? parseInt(promotie_curenta1)+1 : 0)', 3000);
}

$(document).ready(function() {
	totale1 = $('#banner1 img').length-1;
	showPromo1(0);
});
