var totale = 0;
var asteapta = 0;

function showPromo(promotie) {
	clearTimeout(asteapta);
	promotie_curenta = promotie;
	
	$('#mainimg a').css('display', 'none');
	$('#mainimg a:eq('+promotie_curenta+')').css('display', 'block');
	$('#slides a').removeClass('active');
	$('#slides a:eq('+promotie_curenta+')').addClass('active');
	
	var vrel = $('#mainimg a:eq('+promotie_curenta+')').attr('rel').split('~!~');
	$('#slidedesc h2').empty().html(vrel[0]);
	$('#slidedesc p').empty().html(vrel[1]);
	
	asteapta = setTimeout('showPromo(promotie_curenta < totale ? parseInt(promotie_curenta)+1 : 0)', 3000);
}

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