function swfAccueil(tWidth, tHeight)
{
  document.write('<object type="application/x-shockwave-flash" data="vid/video1.swf" width="'+tWidth+'" height="'+tHeight+'">\n');
  document.write('<param name="movie" value="vid/video1.swf" />\n');
  document.write('</object>\n');
}

function form_contact_verifie(tLang) {
	if(tLang=='en'){
		var txt1 = "Please enter the name of the Society";
		var txt2 = "Please enter your First Name.";
		var txt3 = "Please enter a valid e-mail adress.";
	}else{
		var txt1 = "Merci d'indiquer le nom de la société pour vous contacter.";
		var txt2 = "Merci d'indiquer un nom pour vous contacter.";
		var txt3 = "Merci d'indiquer une adresse e-mail valide pour vous contacter.";
	}
	if(document.forms[0].formEntreprise.value.length == 0) {
		alert(txt1);
		return false;
	} else if(document.forms[0].formNom.value.length == 0) {
		alert(txt2);
		return false;
	}
	var a=document.forms[0].formEmail.value;
	var test="" + a;
	for(var k=0; k<test.length; k++) {
		var c = test.substring(k,k+1);
		if(c == "@") {
			return true;
		}
	}
	alert(txt3);
	return false;
}

function menuServiceRollIn(obj){
	$(obj).stop();
	$(obj).animate({
		'paddingTop': '140px',
		'color': '#e6273a',
		'borderBottomColor': '#e6273a'
	}, 200);
}

function menuServiceRollOut(obj){
	$(obj).stop();
	$(obj).animate({
		'paddingTop': '150px',
		'color': 'white',
		'borderBottomColor': '#000'
	}, 200);
}

function bandeauDInit(){
	setInterval(bandeauDChange, 6*1000)
	bandeauDImgAffiche()
}

function bandeauDChange() {
	$("#contenuImg2").children('img').fadeOut('slow');
	$("#contenuImg1").children('img').fadeOut('slow');
	$("#contenuImg0").children('img').fadeOut('slow', function(){
		$('#contenuImg0').height(0);
		bandeauDImgAffiche()
	});
}

function bandeauDImgAffiche() {
	var el = document.getElementById('contenuImg1');
	el.innerHTML = '<img src="img/bandeauD/'+gImgLst[gImgIndex+1]+'" width="223px" height="223px" alt="" />'
	$(el).children('img').fadeIn('slow');
	bandeauDPousse()
}

function bandeauDPousse() {
	$('#contenuImg0').animate({
		'height': '223px'
	}, 500, function() {
		bandeauDImgReste()
	});
}

function bandeauDImgReste() {
	var el = document.getElementById('contenuImg0');
	el.innerHTML = '<img src="img/bandeauD/'+gImgLst[gImgIndex]+'" width="223px" height="223px" alt="" />'
	$(el).children('img').fadeIn(400, function() {
		el = document.getElementById('contenuImg2');
		el.innerHTML = '<img src="img/bandeauD/'+gImgLst[gImgIndex+2]+'" width="223px" height="223px" alt="" />'
		gImgIndex += 3
		if(gImgIndex>=gImgLst.length) {
			gImgIndex = 0;
		}
		$(el).children('img').fadeIn(400)
	});
}
