var totale = 0;
var asteapta = 0;

function showPromo(promotie) {
	clearTimeout(asteapta);
	promotie_curenta = promotie;
	
	$('#slidecon a').css('display', 'none');
	$('#slidecon a:eq('+promotie_curenta+')').css('display', 'block');
	$('.botcon a').removeClass('active');
	$('.botcon a:eq('+promotie_curenta+')').addClass('active');
	
	var vrel = $('#slidecon a:eq('+promotie_curenta+')').attr('rel').split('_1_');
	$('#bgslide span').empty().html('<a href="'+vrel[0]+'" title="'+vrel[1]+'">'+vrel[1]+'</a>');
	$('#bgslide p').empty().html(vrel[2]);
	
	asteapta = setTimeout('showPromo(promotie_curenta < totale ? parseInt(promotie_curenta)+1 : 0)', 5000);
}

$(document).ready(function() {
	totale = $('#slidecon a').length-1;
	showPromo(0);
	
	$('.botcon a').each(function(){ $(this).click(function(){ return false }); });
	
	$('.botcon a').hover(
		function(){
			showPromo($(this).html()-1);
			clearTimeout(asteapta);
		},
		function(){
			asteapta = setTimeout('showPromo(promotie_curenta < totale ? parseInt(promotie_curenta)+1 : 0)', 5000);
		}
	);
});
