function load_presse(numero)
	{
	jQuery("#videoPresse"+numero).addClass("actif");
	jQuery("#masquePage").addClass("actif");
	}

function loadFLV(identifiant)
	{
	jQuery("#masquePage").addClass("actif");
	jQuery("#FLV"+identifiant).addClass("actif");
	}	

function loadVideo(identifiant)
	{
	jQuery("#masquePage").addClass("actif");
	jQuery("#codeVideo"+identifiant).addClass("actif");
	}

function unloadFLV(identifiant)
	{
	jQuery("#masquePage").removeClass("actif");
	jQuery("#FLV"+identifiant).removeClass("actif");
	}	

function unloadVideo(identifiant)
	{
	jQuery("#masquePage").removeClass("actif");
	jQuery("#codeVideo"+identifiant).removeClass("actif");
	}
	
$(document).ready( function () {
	jQuery.noConflict(); 
	heightWindow=jQuery("#page").innerHeight();
	widthWindow=jQuery("#page").innerWidth();
	jQuery("#masquePage").css({width:widthWindow+'px'});
	jQuery("#masquePage").css({height:'1500px'})
});
