function LoadImage(newImage) {
	$("#LeftImg").css('display', 'none');
	$("#Player").css('display', 'none');
	
	$("#NewImg").css('display', 'block');
	$("#NewImg").attr("src","Pdf/Comunicazioni/"+newImage);
}

function LoadFlv(newFlv) {
	$("#LeftImg").css('display', 'none');
	$("#NewImg").css('display', 'none');

	$("div#Player").remove();
	$("#playerContainer").append('<a id="Player" class="media" href="" style="display:none"></a>')
	$("#Player").css('display', 'block')
	$("#Player").attr("href","Flash/mediaPlayer.swf?file=../Pdf/Comunicazioni/"+ newFlv);
	$('a.media').media({ 
    flashvars: { 
        autoPlay: 'true', 
        allowFullScreen: 'true' 
    } 
});
	
}

function ClearAll() {
	$("#NewImg").css('display', 'none');
	$("#Player").css('display', 'none');
	$("#LeftImg").css('display', 'block');
}
