var totale = 0;
var asteapta = 0;

function showPromo(promotie) {
	clearTimeout(asteapta);
	promotie_curenta = promotie;
	nr = promotie_curenta;
	$('#banner_poze a').css('display', 'none');
	$('#banner_poze a:eq('+promotie_curenta+')').css('display', 'block');
	$('#slideshow ul li a').removeAttr("id");
	$('#slideshow ul li a:eq('+promotie_curenta+')').attr('id', 'active'+nr+'');
	
	asteapta = setTimeout('showPromo(promotie_curenta < totale ? parseInt(promotie_curenta)+1 : 0)', 3000);
}

$(document).ready(function() {
	totale = $('#banner_poze a').length-1;
	showPromo(0);
	
	$('#slideshow ul li a').each(function(){ $(this).click(function(){ return true }); });
	
	$('#slideshow ul li a').hover(
		function(){
			showPromo($(this).attr('rel')-1);
			clearTimeout(asteapta);
		},
		function(){
			asteapta = setTimeout('showPromo(promotie_curenta < totale ? parseInt(promotie_curenta)+1 : 0)', 3000);
		}
	);
});
