/**
 * Redimensionne la div de la video
 */
dojo.addOnLoad(function() {
	dojo.query('.jsVideo iframe').forEach(function(item) {
		dojo.style(item.parentNode, 'width', item.width+'px');
	});
});

dojo.addOnLoad(function() {
	dojo.query('.jsVideo object').forEach(function(item) {
		dojo.style(item.parentNode.parentNode, 'width', item.width+'px');
	});
});
