var pausecontent=new Array()
pausecontent[0]='
- Centenaire Lawrence Durrell
Le 27 février 1912, il y a cent ans, naissait à Jalandhar (Indes Britanniques) le grand écrivain anglais Lawrence Durrell. L\'auteur du Quatuor d\'Alaxandrie accomplissait une des œuvres les plus révolutionnaires du XXe siècle. De lui, les éditions Bartillat ont publié Les Îles grecques, somptueuse fresque de l\'archipel grec, où littérature, mythologie, voyage et amour se mêlent. Il est mort le 7 novembre 1990 à Sommières dans le Gard.
'
pausecontent[1]='- Michel Crépu évoquera Chateaubriand à la librairie Compagnie le 11 octobre 2011
À l\'occasion de la parution de son essai sur Chateaubriand, Le Souvenir du monde (éditions Grasset), et de la réédition de la préface aux Études historiques de Chateaubriand, qu\'il a lui-même présentée (édition établie et annotée par Michel Brix), Michel Crépu tiendra une causerie sur cet ensemble à la librairie Compagnie le 11 octobre 2011 à 18 heures. L\'occasion d\'évoquer une grande œuvre sous le signe de l\'Histoire.
'
pausecontent[2]='- Exposition sur la famille Stein au Grand Palais
Retrouvez l\'aventure des Demoiselles d\'Avignon de Picasso à l\'exposition sur la famille Stein au Grand Palais (jusqu\'au 16 janvier 2012). Gertrude Stein suivit de près la réalisation du chef-d\'œuvre de Picasso. Elle en acheta certaines esquisses préparatoires. Il en est longuement question dans l\'essai de Dominique Dupuis-Labbé Les Demoiselles d\'Avignon, la révolution Picasso.
'
pausecontent[3]='- Rencontre Chateaubriand au CNL le 15 septembre 2011
Michel Crépu sera l\'invité des jeudis du CNL le 15 septembre à 19 heures. Il évoquera son dernier livre, Le Souvenir du monde, essai sur Chateaubriand (Grasset), ainsi que Des études historiques de Chateaubriand, volume qu\'il a préfacé aux éditions Bartillat et qui vient de paraître. Cette manifestation sera l\'occasion d\'évoquer un des grands maîtres de la littérature française à travers des aspects méconnus de son œuvre, qui ne sont pas les moins intéressants. Débat animé par Charles Ficat.
'
pausecontent[4]='- Exposition sur l\'Angleterre d\'Oscar Wilde au musée d\'Orsay
Du 13 septembre 2011 au 15 janvier 2012 se tient au musée d\'Orsay l\'exposition : « Beauté, morale et volupté dans l\'Angleterre d\'Oscar Wilde ». Pour vous mettre à ce parfum fin-de-siècle, deux titres sont à votre disposition : une biographie d\'Oscar Wilde par Philippe Jullian dans la collection Omnia et l\'édition de la Bible d\'Amiens de Ruskin dans la version de Marcel Proust avec un important appareil critique d\'Yves-Michel Ergal.
'
pausecontent[5]='- Lettres d\'un amour défunt, correspondance échangée entre Pierre Drieu la Rochelle et Victoria Ocampo, reçoit le Prix Sévigné 2011.
Le prix Sévigné 2011 a été attribué à Lettres d\'un amour défunt, correspondance échangée entre Pierre Drieu la Rochelle et Victoria Ocampo entre 1929 et 1944, dont l\'édition a été établie par Julien Hervier et pulbiée aux éditions Bartillat en octobre 2009.
Chaque année le prix Sévigné couronne une correspondante marquante. Le jury est composé d’Anne de Lacretelle, Présidente-Fondatrice, Dominique Blanchecotte, Déléguée générale de la Fondation d’Entreprise La Poste, Claude Arnaud, Jean-Pierre de Beaumarchais, Manuel Carcassonne, Jean-Paul Clément, Charles Dantzig, Pierre Kyria, Marc Lambron, Jean-Marc Leri, Diane de Margerie, Ivan Nabokov, Éric Ollivier.
Le prix Sévigné est soutenu par la Fondation la Poste et la maison Hermès.
'
pausecontent[6]=''
pausecontent[7]=''
pausecontent[8]=''
/***********************************************
* Pausing up-down scroller- © Dynamic Drive (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit http://www.dynamicdrive.com/ for this script and 100s more.
***********************************************/
function pausescroller(content, divId, divClass, delay){
this.content=content //message array content
this.tickerid=divId //ID of ticker div to display information
this.delay=delay //Delay between msg change, in miliseconds.
this.mouseoverBol=0 //Boolean to indicate whether mouse is currently over scroller (and pause it if it is)
this.hiddendivpointer=1 //index of message array for hidden div
document.write(''+content[0]+'
'+content[1]+'
')
var scrollerinstance=this
if (window.addEventListener) //run onload in DOM2 browsers
window.addEventListener("load", function(){scrollerinstance.initialize()}, false)
else if (window.attachEvent) //run onload in IE5.5+
window.attachEvent("onload", function(){scrollerinstance.initialize()})
else if (document.getElementById) //if legacy DOM browsers, just start scroller after 0.5 sec
setTimeout(function(){scrollerinstance.initialize()}, 500)
}
// -------------------------------------------------------------------
// initialize()- Initialize scroller method.
// -Get div objects, set initial positions, start up down animation
// -------------------------------------------------------------------
pausescroller.prototype.initialize=function(){
this.tickerdiv=document.getElementById(this.tickerid)
this.visiblediv=document.getElementById(this.tickerid+"1")
this.hiddendiv=document.getElementById(this.tickerid+"2")
this.visibledivtop=parseInt(pausescroller.getCSSpadding(this.tickerdiv))
//set width of inner DIVs to outer DIV's width minus padding (padding assumed to be top padding x 2)
this.visiblediv.style.width=this.hiddendiv.style.width=this.tickerdiv.offsetWidth-(this.visibledivtop*2)+"px"
this.getinline(this.visiblediv, this.hiddendiv)
this.hiddendiv.style.visibility="visible"
var scrollerinstance=this
document.getElementById(this.tickerid).onmouseover=function(){scrollerinstance.mouseoverBol=1}
document.getElementById(this.tickerid).onmouseout=function(){scrollerinstance.mouseoverBol=0}
if (window.attachEvent) //Clean up loose references in IE
window.attachEvent("onunload", function(){scrollerinstance.tickerdiv.onmouseover=scrollerinstance.tickerdiv.onmouseout=null})
setTimeout(function(){scrollerinstance.animateup()}, this.delay)
}
// -------------------------------------------------------------------
// animateup()- Move the two inner divs of the scroller up and in sync
// -------------------------------------------------------------------
pausescroller.prototype.animateup=function(){
var scrollerinstance=this
if (parseInt(this.hiddendiv.style.top)>(this.visibledivtop+5)){
this.visiblediv.style.top=parseInt(this.visiblediv.style.top)-5+"px"
this.hiddendiv.style.top=parseInt(this.hiddendiv.style.top)-5+"px"
setTimeout(function(){scrollerinstance.animateup()}, 50)
}
else{
this.getinline(this.hiddendiv, this.visiblediv)
this.swapdivs()
setTimeout(function(){scrollerinstance.setmessage()}, this.delay)
}
}
// -------------------------------------------------------------------
// swapdivs()- Swap between which is the visible and which is the hidden div
// -------------------------------------------------------------------
pausescroller.prototype.swapdivs=function(){
var tempcontainer=this.visiblediv
this.visiblediv=this.hiddendiv
this.hiddendiv=tempcontainer
}
pausescroller.prototype.getinline=function(div1, div2){
div1.style.top=this.visibledivtop+"px"
div2.style.top=Math.max(div1.parentNode.offsetHeight, div1.offsetHeight)+"px"
}
// -------------------------------------------------------------------
// setmessage()- Populate the hidden div with the next message before it's visible
// -------------------------------------------------------------------
pausescroller.prototype.setmessage=function(){
var scrollerinstance=this
if (this.mouseoverBol==1) //if mouse is currently over scoller, do nothing (pause it)
setTimeout(function(){scrollerinstance.setmessage()}, 100)
else{
var i=this.hiddendivpointer
var ceiling=this.content.length
this.hiddendivpointer=(i+1>ceiling-1)? 0 : i+1
this.hiddendiv.innerHTML=this.content[this.hiddendivpointer]
this.animateup()
}
}
pausescroller.getCSSpadding=function(tickerobj){ //get CSS padding value, if any
if (tickerobj.currentStyle)
return tickerobj.currentStyle["paddingTop"]
else if (window.getComputedStyle) //if DOM2
return window.getComputedStyle(tickerobj, "").getPropertyValue("padding-top")
else
return 0
}