en de fr es

Home Alfabet Categorieën Link aanmelden Link wijzigen Adverteren Login Contact

Aantal bezoekers

function right(e) { if (navigator.appName == 'Netscape' && (e.which == 3 || e.which == 2)) return false; else if (navigator.appName == 'Microsoft Internet Explorer' && (event.button == 2 || event.button == 3)) { alert("Sorry. Niet rechtsklikken. © by Johan!"); return false; } return true; } document.onmousedown=right; document.onmouseup=right; if (document.layers) window.captureEvents(Event.MOUSEDOWN); if (document.layers) window.captureEvents(Event.MOUSEUP); window.onmousedown=right; window.onmouseup=right; // End --> // var nDots = 7; if (document.all&&window.print) document.body.style.cssText="overflow-x:hidden;overflow-y:scroll" var Xpos = 0; var Ypos = 0; // fixed time step, no relation to real time var DELTAT = .01; // size of one spring in pixels var SEGLEN = 10; // spring constant, stiffness of springs var SPRINGK = 10; // all the physics is bogus, just picked stuff to // make it look okay var MASS = 1; var GRAVITY = 50; var RESISTANCE = 10; // stopping criterea to prevent endless jittering // doesn't work when sitting on bottom since floor // doesn't push back so acceleration always as big // as gravity var STOPVEL = 0.1; var STOPACC = 0.1; var DOTSIZE = 11; // BOUNCE is percent of velocity retained when // bouncing off a wall var BOUNCE = 0.75; var isNetscape = navigator.appName=="Netscape"; // always on for now, could be played with to // let dots fall to botton, get thrown, etc. var followmouse = true; var dots = new Array(); init(); function init() { var i = 0; for (i = 0; i < nDots; i++) { dots[i] = new dot(i); } if (!isNetscape) { // I only know how to read the locations of the // items in IE //skip this for now // setInitPositions(dots) } // set their positions for (i = 0; i < nDots; i++) { dots[i].obj.left = dots[i].X; dots[i].obj.top = dots[i].Y; } if (isNetscape) { // start right away since they are positioned // at 0, 0 startanimate(); } else { // let dots sit there for a few seconds // since they're hiding on the real bullets setTimeout("startanimate()", 2000); } } function dot(i) { this.X = Xpos; this.Y = Ypos; this.dx = 0; this.dy = 0; if (isNetscape) { this.obj = eval("document.dot" + i); } else { this.obj = eval("dot" + i + ".style"); } } function startanimate() { setInterval("animate()", 20); } // This is to line up the bullets with actual LI tags on the page // Had to add -DOTSIZE to X and 2*DOTSIZE to Y for IE 5, not sure why // Still doesn't work great function setInitPositions(dots) { // initialize dot positions to be on top // of the bullets in the var startloc = document.all.tags("LI"); var i = 0; for (i = 0; i < startloc.length && i < (nDots - 1); i++) { dots[i+1].X = startloc[i].offsetLeft startloc[i].offsetParent.offsetLeft - DOTSIZE; dots[i+1].Y = startloc[i].offsetTop + startloc[i].offsetParent.offsetTop + 2*DOTSIZE; } // put 0th dot above 1st (it is hidden) dots[0].X = dots[1].X; dots[0].Y = dots[1].Y - SEGLEN; } // just save mouse position for animate() to use function MoveHandler(e) { Xpos = e.pageX; Ypos = e.pageY; return true; } // just save mouse position for animate() to use function MoveHandlerIE() { Xpos = window.event.x + document.body.scrollLeft; Ypos = window.event.y + document.body.scrollTop; } if (isNetscape) { document.captureEvents(Event.MOUSEMOVE); document.onMouseMove = MoveHandler; } else { document.onmousemove = MoveHandlerIE; } function vec(X, Y) { this.X = X; this.Y = Y; } // adds force in X and Y to spring for dot[i] on dot[j] function springForce(i, j, spring) { var dx = (dots[i].X - dots[j].X); var dy = (dots[i].Y - dots[j].Y); var len = Math.sqrt(dx*dx + dy*dy); if (len > SEGLEN) { var springF = SPRINGK * (len - SEGLEN); spring.X += (dx / len) * springF; spring.Y += (dy / len) * springF; } } function animate() { // dots[0] follows the mouse, // though no dot is drawn there var start = 0; if (followmouse) { dots[0].X = Xpos; dots[0].Y = Ypos; start = 1; } for (i = start ; i < nDots; i++ ) { var spring = new vec(0, 0); if (i > 0) { springForce(i-1, i, spring); } if (i < (nDots - 1)) { springForce(i+1, i, spring); } // air resisitance/friction var resist = new vec(-dots[i].dx * RESISTANCE, -dots[i].dy * RESISTANCE); // compute new accel, including gravity var accel = new vec((spring.X + resist.X)/ MASS, (spring.Y + resist.Y)/ MASS + GRAVITY); // compute new velocity dots[i].dx += (DELTAT * accel.X); dots[i].dy += (DELTAT * accel.Y); // stop dead so it doesn't jitter when nearly still if (Math.abs(dots[i].dx) < STOPVEL && Math.abs(dots[i].dy) < STOPVEL && Math.abs(accel.X) < STOPACC && Math.abs(accel.Y) < STOPACC) { dots[i].dx = 0; dots[i].dy = 0; } // move to new position dots[i].X += dots[i].dx; dots[i].Y += dots[i].dy; // get size of window var height, width; if (isNetscape) { height = window.innerHeight + document.scrollTop; width = window.innerWidth + document.scrollLeft; } else { height = document.body.clientHeight + document.body.scrollTop; width = document.body.clientWidth + document.body.scrollLeft; } // bounce of 3 walls (leave ceiling open) if (dots[i].Y >= height - DOTSIZE - 1) { if (dots[i].dy > 0) { dots[i].dy = BOUNCE * -dots[i].dy; } dots[i].Y = height - DOTSIZE - 1; } if (dots[i].X >= width - DOTSIZE) { if (dots[i].dx > 0) { dots[i].dx = BOUNCE * -dots[i].dx; } dots[i].X = width - DOTSIZE - 1; } if (dots[i].X < 0) { if (dots[i].dx < 0) { dots[i].dx = BOUNCE * -dots[i].dx; } dots[i].X = 0; } // move img to new position dots[i].obj.left = dots[i].X; dots[i].obj.top = dots[i].Y;}} var Message="Feyenoord online!! Met het nieuwste nieuws!!"; var place=1; function start() {document.title=Message.substring(0, place); if (place >= Message.length) {place=1; window.setTimeout("dragOut()",250);} else {place++; window.setTimeout("start()",80);}} function dragOut() {document.title=Message.substring(place, Message.length); if (place >= Message.length) {place=1; window.setTimeout("start()", 110);} else {place++; window.setTimeout("dragOut()", 80);}}

ChatboxX

Kom hier lekker Chatten!

  • Aantal chatters..
  • De Chatboxx!

Feyenoord historie

Hier een paar links over de historie van Feyenoord:

  • Feyenoord Europees
  • Feyenoord historie
  • Feyenoord historie site
  • Prijzenkast

Feyenoord logo s

Allemaal verschillende Feyenoord logo's..:

  • Logo's logo's......

Feyenoord stadion!

Het Feyenoord stadion is het mooiste stadion van de wereld! Het ligt in de stad Rotterdam en hij heet De Kuip! Er kunnen meer dan 50.000 toeschouwers in het stadion!

  • Foto's kuip 1937-1975
  • Foto's kuip 1976-1994
  • Foto's kuip 1995-2003
  • Foto's van De Kuip. De Kuip!
  • Geschiedenis van De Kuip! Gechiedeniss
  • Info, over De Kuip... Informatie»»»De kuip

Feyenoord wint 2-0 van Utrecht

Feyenoord heeft vier dagen voor het beslissende treffen met Sporting Lissabon aan het zelfvertrouwen gewerkt. De Rotterdammers toonden zich in en tegen Utrecht uitermate efficiënt en boekten een 0-2 zege. Feyenoord verstevigde daarmee de grip op de vierde positie van de ranglijst. Romeo Castelen bracht de bezoekers voor rust op voorsprong met een fraaie volley, waarna Dirk Kuyt de thuisploeg na rust alle illusies ontnam.

Gastenboek

Schrijf hier wat in mijn gastenboek:

  • Gastenboek

Grappige filmpjes en plaatjeS!

Hier een aantal grappige filmpjes en plaatjes:

  • Bikerr
  • Blondjes
  • Cursor
  • De paus
  • Grappa
  • Ilusie
  • Sneeuw in Belgie
  • Sport
  • Tattoo
  • Wind0wss

Holland Casino Eredivisie

Een overzicht van alle wedstrijden in de eredivisie: vrijdag 25 februari: NEC 1-0 RKC Waalwijk zaterdag 26 februari: NAC Breda 1-4 FC Groningen FC Twente 0-0 De Graafschap zondag 27 februari: Roda JC 1-2 Ajax ADO Den Haag 1-0 FC Utrecht Feyenoord 3-0 RBC R'daal FC Den Bosch 1-2 Vitesse Willem II 1-3 AZ sc Heerenveen 0-3 PSV Feyenoord wint 3-0 van RBC Roosendaal!!!!

  • Studio Sport Eredivisie

Klok

// verander hieronder de kleur font en grootte van het klokje var tags_before_clock = " " var tags_middle_clock = "" if(navigator.appName == "Netscape") { document.write(''); } if (navigator.appVersion.indexOf("MSIE") != -1){ document.write(''); } function upclock(){ var dte = new Date(); var hrs = dte.getHours(); var min = dte.getMinutes(); var sec = dte.getSeconds(); var col = ":"; var spc = " "; var com = ""; if (hrs == 0) hrs=12; if (min

Komende wedstrijden

De volgende wedstrijden zullen de komende dagen gespeeld worden: Do. 24 feb 2005: Feyenoord - Sporting Zo. 27 feb 2005: Feyenoord - RBC Roosendaal Do. 3 mrt 2005: Feyenoord - NAC Breda Zo. 06 mrt 2005: FC Den Bosch - Feyenoord

Laatste update:

Linkpartners

Ook linkpartner worden?? Schrijf in me -Gastenboek- of stuur me een mailtje! hier staan al onze linkpartners:

  • AUTOS  
  • Feyenoord bestelinks
  • Feyenoordboy
  • Psvonline Lukiejjj!  

Muziek

Hier zijn verschille radio stations waar je muziek kan luisteren:

  • Classic fm
  • Meer muziek
  • Radio 1
  • Radio 2
  • Radio 3fm
  • Radio 538  
  • Skyradio  
  • Veronica
  • Yorin fm

Nieuws

Het laatste Feyenoord nieuws:

Poll

Spelers van Feyenoord

Hier alle spelers van Feyenoord:

  • Alexander Östlund  
  • André Bahia  
  • Bart Goor  
  • Bruno Basto  
  • Christian Gyan  
  • Cory Gibbs  
  • Danko Lazovic  
  • Dirk Kuyt  
  • Edwin de Graaf  
  • Gabor Babos  
  • Gianni Zuiverloon  
  • Hossam Ghaly
  • Karim Saidi
  • Leonarod Vitor Santiago
  • Nicky Hofs
  • Pascal Bosschaart
  • Patrick Lodewijks
  • Patrick Mtiliga
  • Patrick Paauwe
  • Romeo Castelen
  • Ruud Gullit De trainer van Feyenoord!
  • Salomon Kalou
  • Sebastian Pardo
  • Shinji Ono

Tellerr

Hier het aantal keren dat mijn site is bezocht: body { scrollbar-3d-light-color:#ff0000; scrollbar-arrow-color:#006600; scrollbar-base-color:#0000ff; scrollbar-dark-shadow-color:#ffff00; scrollbar-face-color:#3366FF; scrollbar-highlight-color:#66ff00; scrollbar-shadow-color:#ffffff}

Thuistenue van het jaar 04/05

Topscorers!

Hier staan de topscorers van Feyenoord 13 februari 2005: Speler Doelpunten 1 - Dirk Kuyt 20 2 - Salomon Kalou 11 3 - Bart Goor 6 3 - Romeo Castelen 6 5 - Shinji Ono 3 5 - Nicky Hofs 4 6 - Danko Lazovic 2 7 - Hossam Ghaly 1 7 - Karim Saidi 1 7 - Cory Gibbs 1 7 - Bruno Basto 1

Trainingstijden 1e elftal

Ma 7/2 14.30u Di 8/2 10.30u Wo 9/2 10.30u Do 10/2 10.30/15.00u Vr 11/2 10.30u Za 12/2 10.30u

  • Trainingswebcam...

Uittenue van het jaar 04/05

Voetbal clubs Nederland

Hier alle voetbal clubs uit de Nederlandse Eredivisie:

  • ADO Den Haag  
  • Ajax  
  • AZ  
  • De Graafschap  
  • FC Den Bosch  
  • FC Groningen  
  • FC Twente  
  • FC Utrecht  
  • Feyenoord!  
  • NAC  
  • NEC
  • PSV
  • RBC Roosendaal
  • RKC Waalwijk
  • Roda JC
  • SC Heerenveen
  • Vitesse
  • Willem II

Volgende tegenstander

De volgende wedstijd van Feyenoord zal uit tegen FC Den Bosch zijn: FC Den Bosch - Feyenoord Zondag 6 maart, 14:30 FC Den Bosch stadion Holland Casino Eredivisie!

© 2006-2024 Jouwpagina.nl | Pagina maken | Algemene voorwaarden | Contact