$(document).ready(function(){
	
	if ($('#home-flash').length>0)
	{
	$('#home-flash').flash({
		src: 'swf/home-financo.swf',
		width: 920,
		height: 560,
		flashvars: { CrdProjet: ValCrdProjet, CrdAutoMoto: ValCrdAutoMoto, CrdTravaux: ValCrdTravaux, CrdRenouv:ValCrdRenouv }

	});
	}

	$('#contenair.credit-renouvelable .encart .content .flash').flash({
		src: 'swf/credit-renouvelable.swf',
		width: 442,
		height: 380
	});

	$('#contenair.pret-auto-moto .encart .content .flash').flash({
		src: 'swf/pret-auto-moto.swf',
		width: 442,
		height: 380
	});

	$('#contenair.pret-travaux .encart .content .flash').flash({
		src: 'swf/pret-travaux.swf',
		width: 442,
		height: 380
	});
	
	$('#contenair.pret-projet .encart .content .flash').flash({
		src: 'swf/pret-projet.swf',
		width: 442,
		height: 380
	});

	$(".popup").click(function(event) {
		event.preventDefault(); 
		popup($(this).attr("href"));
	});
	
	$(document).pngFix(); ;
	
	animation1();
});


function animation1(){
	$('.sticker').animate({	opacity: 0.25, top: '+=10' },500,animation2)	
}

function animation2(){
	$('.sticker').animate({	opacity: 1, top: '-=10' },500,animation1)	
}


function popup(url) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(url, '" + id + "', 'toolbar=0,scrollbars=1,location=1,statusbar=0,menubar=0,resizable=0,width=800,height=400,left = 440,top = 325');");
}




