var pausecontent=new Array();
pausecontent[0]='
Entraînement - Sans les titulaires
A 16h00, les joueurs avaient rendez-vous sur le terrain synthétique du Haillan. Les titulaires se sont contentés d'un footing et d'étirements en salle. Il n'y avait que 10 joueurs présents sur le terrain cet après-midi. Après avoir travaillé la...
[ Lire la suite ]';
pausecontent[1]='Stats ? 99% Girondins version 22
99% Girondins, c’est l’article dédié aux statistiques des joueurs marine et blanc. Les Girondins ont signé leur 7ème victoire de la saison face à Toulouse (2-0). Jussiê a inscrit son 3ème but en championnat, le 4ème de sa saison. Ludovic Obraniak a...
[ Lire la suite ]';
pausecontent[2]='Club ? L\'actu des prêtés
3 de nos 5 joueurs prêtés ont foulé les pelouses le week-end dernier. Salif Sané était une nouvelle fois titulaire avec l’AS Nancy Lorraine. Les Nancéiens ont concédé le match nul face à Rennes (0-0). Maxime Poundje était lui aussi titulaire....
[ Lire la suite ]';
pausecontent[3]='L1 ? Le tour de la L1
Chaque semaine, retrouvez les faits marquants de la dernière journée de championnat. 3 rencontres ont été reportées en raison du froid ce week-end. Lille n’a donc pu que constater les nouvelles victoires de Paris et Montpellier. Les 2 équipes de...
[ Lire la suite ]';
pausecontent[4]='GirondinsTV.com - Le match en ligne
Découvrez le match Bordeaux-Toulouse de la 22ème journée de Ligue 1 en intégralité ainsi qu'un résumé de 5 minutes sur GirondinsTV.com.
en lire plus
[ Lire la suite ]';
pausecontent[5]='Entrainement - Le programme de la semaine
La semaine s'annonce chargée pour les Girondins. 2 matches sont au programme, un déplacement à Lyon mercredi pour la Coupe de France, un autre à Lille dimanche pour le championnat. Les Marine et Blanc s'entraîneront aujourd'hui et demain à 16h,...
[ Lire la suite ]';
pausecontent[6]='Gillot - 5 questions à ...
En conférence de presse, Francis Gillot a analysé la rencontre entre Girondins et Toulousains et retenant les points positifs et des choses à revoir. Pour finir, il dit avoir apprécié les prestations d’Obraniak et Mariano.
en lire...
[ Lire la suite ]
';
pausecontent[7]='Presse ? La revue de web
Les Girondins recevaient Toulouse samedi soir pour la 22ème journée de championnat. Découvrez ce matin les principaux commentaires de la presse sur la Toile ainsi que le résumé du site officiel toulousain.
en lire...
[ Lire la suite ]
';
pausecontent[8]='Match - Les réactions des acteurs
Francis Gillot, Alain Casanova, Daniel Congré, Ludovic Obraniak et Nicolas Maurice-Belay se sont exprimés en conférence d’après match. Retrouvez leurs réactions.
en lire plus
[ Lire la suite ]';
pausecontent[9]='Match ? Bordeaux réchauffe Chaban [2-0]
Dans une partie aux occasions multiples de part et d’autre, les Girondins ont su concrétiser leurs moments forts pour l’emporter face au voisin toulousain. Dominés en 2ème période, les Girondins ont ouvert le score dès la 1ère minute de jeu par...
[ Lire la suite ]';
pausecontent[10]='Focus - Jussiê l\'efficacité
Bordeaux accueillait Toulouse pour le derby de la Garonne. Les Girondins ont ouvert le score très rapidement par l’intermédiaire de Jussiê. Le Brésilien inscrit ainsi son 4ème but de la saison. Tout au long de la partie le n°10 Bordelais s’est...
[ Lire la suite ]';
/***********************************************
* 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
}