// JavaScript Document

function updateVideosSpectacles(num) {
	
	$('pages').value = num;
	
	// On met a jour les fiches
	new Ajax.Updater('update', 'include/ajax/listeVideosSpectacles.php', {
	   method: 'get',
	   parameters: $('afficher').serialize(),
	   asynchronous: false,
	   evalScripts: true,
	   onCreate: function() {
		$('nb').setStyle({ backgroundImage: 'url(img/layout/loading.gif)' });
		TableKit.unloadTable('resultats');
	   },
	   onComplete: function() {
		$('nb').setStyle({ backgroundImage: 'none' });
		TableKit.Sortable.init('resultats');
	   }
	 });
		
}
