var i = 1;
var j = 1;

function init()
{
	window.open("pop_up.html","pop_up","width=740, height=540, toolbar=no status=no" );
	$('#actualites_label').html(labels[0]);
	$('#actualites_label').fadeIn(500);
	$(this).everyTime(5000, function () {
		$('#actualites_label').fadeOut(500);
		$(this).oneTime(500, function () {
			$('#actualites_label').html(labels[i]);
			$('#actualites_label').fadeIn(500);
			i++;
			if (i >= labels.length)
				i = 0;
		});
	});
	$('#promos_affiche').html('<img width="316px" height="447px" src="images/'+promos[0]+'">');
	$('#promos_affiche').fadeIn(250);
	$('#main_text').html('<img src="images/'+main_text[0]+'">');
	$('#main_text').fadeIn(250);
	$(this).everyTime(3000, function () {
		$('#promos_affiche').fadeOut(250);
		$('#main_text').fadeOut(250);
		$(this).oneTime(250, function () {
			$('#promos_affiche').html('<img width="316px" height="447px" src="images/'+promos[j]+'">');
			$('#promos_affiche').fadeIn(250);
			$('#main_text').html('<img src="images/'+main_text[j]+'">');
			$('#main_text').fadeIn(250);
			j++;
			if (j >= promos.length)
				j = 0;
		});
	});
}

