var pausecontent=new Array(); pausecontent[0]='

Match - Les réactions

Après le match nul contre l'AS Roma, les acteurs de la rencontre sont venus devant la presse livrer leur analyse. Pour vous, girondins.com a recueilli les réactions de Jean Tigana, Yoann Gourcuff, Alou Diarra, Jaro Plasil et Lamine Sané. Découvrez...


[ Lire la suite ]

'; pausecontent[1]='

Match ? Gourcuff le métronome

Absent contre Tours, le meneur de jeu au scapulaire faisait son retour au terrain aujourd’hui contre la Roma dans le cadre du Tournoi de Paris. Yoann a réalisé un gros match avec beaucoup d’envie et de spontanéité. Une bonne nouvelle pour Bordeaux...


[ Lire la suite ]

'; pausecontent[2]='

Match - Un nul prometteur

Les Girondins de Bordeaux et l'AS Roma se sont neutralisés, dans ce match d'ouverture du Tournoi de Paris (1-1). Dans un match à deux visages, où la première période fût bien plus haletante que la seconde, les Girondins ont clairement dominé les...


[ Lire la suite ]

'; pausecontent[3]='

Match - Les équipes


[ Lire la suite ]

'; pausecontent[4]='

Match - Ranieri et Menez motivés

Claudio Ranieri, le technicien italien de la Roma est venu en conférence de presse, hier au Parc des Princes. Le coach a évoqué le tournoi et ses retrouvailles avec Jean Tigana. Jeremy Ménez accompagnait son entraîneur pour...


[ Lire la suite ]

'; pausecontent[5]='

Match - De la revanche dans l\'air

Le FC Girondins de Bordeaux affronte l’AS Roma cet après-midi, à 16h45, en match d’ouverture du Tournoi de Paris. Si cette rencontre constitue le premier match officiel des Bordelais, l’objectif reste de préparer le début de la saison. Néanmoins,...


[ Lire la suite ]

'; pausecontent[6]='

Tigana ? « Tester mes joueurs »

Le coach bordelais et son capitaine, Alou Diarra, avaient rendez-vous aujourd’hui avec la presse au Parc des Prince pour la conférence avant le Tournoi de Paris. Les deux hommes se sont montrés concis même si quelques sourires étaient au...


[ Lire la suite ]

'; pausecontent[7]='

Superleague Formula - Ce week-end à Brands-Hatch

Ce week-end, le circuit anglais de Brands-Hatch situé dans la périphérie Sud de Londres sera le théâtre de la 7e manche de la saison de Superleague Formula.  Cette manche verra l’écurie Barazi-Epsilon et son pilote Franck Montagny aborder la...


[ Lire la suite ]

'; pausecontent[8]='

Match - Du côté de la Roma

L’AS Roma débarque en France pour sa première participation au Tournoi de Paris. En pleine phase de préparation, l’équipe italienne compte bien profiter de la compétition organisée au Parc des Princes pour peaufiner et affûter sa tactique et son...


[ Lire la suite ]

'; pausecontent[9]='

Match - Du côté du FC Porto

Le FC Porto, 3ème du championnat du Portugal, va retrouver les Girondins de Bordeaux lors du Tournoi de Paris. Encore en phase de préparation pour la nouvelle saison, les Dragons se présentent néanmoins comme un adversaire redoutable. D’autant plus...


[ Lire la suite ]

'; pausecontent[10]='

Trésor ? « Jeunes et inexpérimentés »

Dans cette deuxième partie de son interview, Marius Trésor nous parle de la réserve du FC Girondins de Bordeaux qu’il coache avec Patrick Battiston. Sans langue de bois, il évoque ses attentes et ses objectifs. Toujours très exigeant, il espère que...


[ 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]+'
') 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 }