function viderInput(id,value){
	elm1 = document.getElementById(id);
	elm1.value = "";
}

/*
* Recup code HTML video à partir d'id produit
*/
function getHTMLVideo(_id) {
	$.ajax({
		type: "GET",
		url: '/php/ajax/homeVideos.php',
		data: 'produit_id='+_id,
		/*datatype:"html"*/ 
		async: false,
		success: function(msg){
			_return=msg;
		}
	});
	return _return;
}

function onClickHabillage(){
	add_pub_clic(_habillage.id);
	document.location.href = _habillage.lien;
}

$(function(){
	//Gestion télé//
	$('#home-videos-bt a').click(function(e){
		//on désactive le comportement du lien '#' => remonterait en haut de la page//
		e.preventDefault();
		
		//on récupère la valeur du rel//
		var _rel=$(this).attr('rel');
		_htmlVideo=getHTMLVideo(_rel);
		//on récupère l'id//
		var _id=$(this).attr('id');
		//on récupère chiffre de fin//
		_num=_id.split('home-videos-bt-')[1];
		//on desactive tous les boutons//
		$('#home-videos-bt a').attr('class', '');
		//on active bouton cliqué//
		$(this).attr('class', 'home-videos-bt-on');
		//on cache tous les packs//
		$('.home-videos-pack').hide();
		//on affiche la vidéo souhaitée et on centre//
		$('#home-videos-flash').html(_htmlVideo);
		$('#home-videos-flash').css('padding-top', (($('#home-videos-ecran').height() - $('#home-videos-flash').height()) /2) + 'px');
		//on affiche le pack voulu//
		$('#home-videos-pack-'+_num).show();
	}); 
	
	/* pub leaderboard */
	if(typeof(pub) != 'undefined'){
		var flashvars = {};
		var params = {
			wmode: "transparent"
		};
		var attributes = {};
		//On récupère une publicité aléatoire 
		swfobject.embedSWF('../data/pub/'+_pub, "header-pub-flash", "728", "90", "9.0.0","/data/flash/expressInstall.swf", flashvars, params, attributes);
	}
	
	/* lien habillage */
	if(typeof(_habillage) != 'undefined'){
		var hauteurPage=$('html').height();
		$('#habillage').css({height:hauteurPage+'px', width:'100%', marginBottom:'-'+hauteurPage+'px',cursor:'pointer', position:'absolute', top:0, left:0})
		.click(function(){
			onClickHabillage();
		});
		
		$('#header-pub').css({cursor :'pointer'}).click(function(){
			onClickHabillage();
		});
	}
	
	/* SLIDE LE CHOIX DES MAMANS */
	$('#home-choix-mamans-container').cycle({
		fx: 'scrollHorz', 
		speed: 300,
		timeout: 5000, 
		next:  '#home-choix-mamans-suiv',
		prev:   '#home-choix-mamans-prec'
	});

	var slideHeros = new ImageFlow();
	slideHeros.init({
		ImageFlowID:'home-heros-slide' , 
		slideshowSpeed: 4000,
		reflectionP: 0.4, 
		imageCursor:'pointer',
		captions:false, 
		buttons:true,
		scrollbarP:0.9,
		//reflectionPNG:true,
		opacity:true,
		slideshowAutoplay:true,
		reflectionGET: '&bgc=FFF59A', 
		startID:5, 
		aspectRatio: 3.20,
		xStep: 100
	});
	
	//on lance première vidéo par défaut//
	if($('#home-videos-bt a:first').length > 0){
		$('#home-videos-bt a:first').click();
	}
});
