function changerVideos(id) {
	
	
	var data = {
		video1:{
			img_top:    'images/top01.gif',
			img_bottom: 'images/bas_video01.gif',
			video:      'videos/beaudet_bechard_t61268.wmv'
		},
		video2:{
			img_top:    'images/top02.gif',
			img_bottom: 'images/bas_video02.gif',
			video:      'videos/turgeon_girard_t61269.wmv'
		},
		video3:{
			img_top:    'images/top03.gif',
			img_bottom: 'images/bas_video03.gif',
			video:      'videos/pelletier_doucet_t61270.wmv'
		},
		video4:{
			img_top:    'images/top04.gif',
			img_bottom: 'images/bas_video04.gif',
			video:      'videos/ongande_lavoie_t61267.wmv'
		},
		video5:{
			img_top:    'images/top05.gif',
			img_bottom: 'images/bas_video05.gif',
			video:      'videos/amireault_cyr_t61272.wmv'
		},
		video6:{
			img_top:    'images/top06.gif',
			img_bottom: 'images/bas_video06.gif',
			video:      'videos/corfa_t61271.wmv'
		}
	};
	
	
	new playerWinMedia({ 
		url:      data['video'+id]['video'],
		width:    320,
		height:   240,
		uimode:   'full',
		autostart: 'true',
		id: 'extraitvideo'
}).generate({
	output:{
		type:     'object',
		id:       'player',
		property: 'innerHTML'
	}
});

		document.getElementById('imgtop').src = data['video'+id]['img_top'];
		document.getElementById('imgbottom').src = data['video'+id]['img_bottom'];
		return false;
}