var totale = 0;
var asteapta = 0;

function showPromo(promotie) {
	clearTimeout(asteapta);
	promotie_curenta = promotie;
	
	$('#banner_poze a').css('display', 'none');
	$('#banner_poze a:eq('+promotie_curenta+')').css('display', 'block');
	$('#bottomslide a').removeClass('active');
	$('#bottomslide a:eq('+promotie_curenta+')').addClass('active');
	
	var vrel = $('#banner_poze a:eq('+promotie_curenta+')').attr('rel').split('~!~');
	$('#descriere p').empty().html('<a href="'+vrel[0]+'" title="'+vrel[1]+'">'+vrel[1]+'</a>');
	$('#descriere p').empty().html(vrel[2]);
	
	
	asteapta = setTimeout('showPromo(promotie_curenta < totale ? parseInt(promotie_curenta)+1 : 0)', 3000);
}

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