ETALON-HORSE-WORLD

!!!ELAD LOVAK!!!

http://kep.psharing.com/395367.jpg

 

 

Kiscsikt vrunk! >>

 

Ismt nyeregben >>

Licit eredmnyek:

FERNANDO DEL TORO j gazdja: Catly!

MARCO POLO GC s ARDIENTE MC j gazdja: Ax!

PRINZO DEL CASIO j gazdja ANNABEL LEE!

 

menuee43f.png

istallokeb478.png

 ugyintezes653e1.png

 ujlobaeb0.png

maganistallo4bb85.png

tenyeszetf527d.png

versenyparkecf37.png

licitvasare4a83.png

 

 

 

ELITE oldalak:

FANTAAA

0357d054ihadratceeroyjpg1lc8151.jpg

prettyd2ec6.pngDLVP327a3.pnghttp://users1.ml.mindenkilapja.hu/users/1stdesign/uploads/2_elite_en.gifkerdfadea.png

kerdfadea.pngkerdfadea.pngkerdfadea.pngkerdfadea.png 

 

Tekintstek meg a Szerkeszt ajnlatt! KATT IDE!


 

 


 

(mg nem mkdik...xD kis trelmet)

Fles3a959.png

Simogasstok meg a lovarda kis kedvenct, Flest! Katt a kpre!

Fmen
 
Regisztrlj TE is!
Felhasznlnv:

Jelsz:
SgSg
Regisztrci
Elfelejtettem a jelszt
 
RANCH
 
Adok valamit az oldalnak! (kpet, videt,szveget)
[84-65] [64-45] [44-25] [24-5] [4-1]

2008.02.24. 11:40 Idzet
/*********************************************** * Memory Scroller script- © Dynamic Drive DHTML code library (www.dynamicdrive.com) * This notice MUST stay intact for legal use * Visit Dynamic Drive at http://www.dynamicdrive.com/ for full source code ***********************************************/ var memorywidth="300px" //scroller width var memoryheight="20px" //scroller height var memorybgcolor="#DEFDD9" //scroller background var memorypadding="2px" //padding applied to the scroller. 0 for non. var borderCSS="border: 1px solid black;" //Border CSS, applied to scroller to give border. var memoryspeed=2 //Scroller speed (larger is faster 1-10) var pauseit=1 //Pause scroller onMousever (0=no. 1=yes)? var persistlastviewedmsg=1 //should scroller's position persist after users navigate away (1=yes, 0=no)? var persistmsgbehavior="onlod" //set to "onlod" or "onclick". //Specify the scroller's content (don't delete tag) //Keep all content on ONE line, and backslash any single quotations (ie: that\'s great): var memorycontent='Thank you for visiting Dynamic Drive. If you find this script useful, please consider linking to or recommending Dynamic Drive.' ////NO NEED TO EDIT BELOW THIS LINE//////////// var combinedcssTable="width:"+(parseInt(memorywidth)+6)+"px;background-color:"+memorybgcolor+";padding:"+memorypadding+";"+borderCSS+";" var combinedcss="width:"+memorywidth+";height:"+memoryheight+";" var divonclick=(persistlastviewedmsg && persistmsgbehavior=="onclick")? 'onClick="savelastmsg()" ' : '' memoryspeed=(document.all)? memoryspeed : Math.max(1, memoryspeed-1) //slow speed down by 1 for NS var copyspeed=memoryspeed var pausespeed=(pauseit==0)? copyspeed: 0 var iedom=document.all||document.getElementById if (iedom) document.write('') var actualwidth='' var memoryscroller if (window.addEventListener) window.addEventListener("load", populatescroller, false) else if (window.attachEvent) window.attachEvent("onlod", populatescroller) else if (document.all || document.getElementById) window.onlod=populatescroller function populatescroller(){ memoryscroller=document.getElementById? document.getElementById("memoryscroller") : document.all.memoryscroller memoryscroller.style.left=parseInt(memorywidth)+8+"px" if (persistlastviewedmsg && get_cookie("lastscrollerpos")!="") revivelastmsg() memoryscroller.innerHTML=memorycontent actualwidth=document.all? temp.offsetWidth : document.getElementById("temp").offsetWidth lefttime=setInterval("scrollmarquee()",20) } function get_cookie(Name) { var search = Name + "=" var returnvalue = "" if (document.cookie.length > 0) { offset = document.cookie.indexOf(search) if (offset != -1) { offset += search.length end = document.cookie.indexOf(";", offset) if (end == -1) end = document.cookie.length; returnvalue=unescape(document.cookie.substring(offset, end)) } } return returnvalue; } function savelastmsg(){ document.cookie="lastscrollerpos="+memoryscroller.style.left } function revivelastmsg(){ lastscrollerpos=parseInt(get_cookie("lastscrollerpos")) memoryscroller.style.left=parseInt(lastscrollerpos)+"px" } if (persistlastviewedmsg && persistmsgbehavior=="onlod") window.onunload=savelastmsg function scrollmarquee(){ if (parseInt(memoryscroller.style.left)>(actualwidth*(-1)+8)) memoryscroller.style.left=parseInt(memoryscroller.style.left)-copyspeed+"px" else memoryscroller.style.left=parseInt(memorywidth)+8+"px" } if (iedom){ with (document){ document.write('
') write('
') write('
') write('
') document.write('
') } }

2008.02.24. 11:38 Idzet
/*Example message arrays for the two demo scrollers*/ var pausecontent=new Array() pausecontent[0]='JavaScript Kit
Comprehensive JavaScript tutorials and over 400+ free scripts!' pausecontent[1]='Coding Forums
Web coding and development forums.' pausecontent[2]='CSS Drive
Categorized CSS gallery and examples.' var pausecontent2=new Array() pausecontent2[0]='News.com: Technology and business reports' pausecontent2[1]='CNN: Headline and breaking news 24/7' pausecontent2[2]='BBC News: UK and international news' /*********************************************** * 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 onlod in DOM2 browsers window.addEventListener("load", function(){scrollerinstance.initialize()}, false) else if (window.attachEvent) //run onlod in IE5.5+ window.attachEvent("onlod", 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 }

2008.02.24. 11:36 Idzet

/* Cursor Trailor Text- By Peter Gehrig (http://www.24fun.ch/) Permission given to Dynamicdrive.com to feature script in it's archive. For full source code, installation instructions, and 1000's more DHTML scripts, visit http://dynamicdrive.com */ var x,y var step=20 var flag=0 // Your snappy message. Important: the space at the end of the sentence!!! var message="DV AZ E-H-W CLUBBAN!" message=message.split("") var xpos=new Array() for (i=0;i<=message.length-1;i++) { xpos[i]=-50 } var ypos=new Array() for (i=0;i<=message.length-1;i++) { ypos[i]=-50 } function handlerMM(e){ x = (document.layers) ? e.pageX : document.body.scrollLeft+event.clientX y = (document.layers) ? e.pageY : document.body.scrollTop+event.clientY flag=1 } function makesnake() { if (flag==1 && document.all) { for (i=message.length-1; i>=1; i--) { xpos[i]=xpos[i-1]+step ypos[i]=ypos[i-1] } xpos[0]=x+step ypos[0]=y for (i=0; i=1; i--) { xpos[i]=xpos[i-1]+step ypos[i]=ypos[i-1] } xpos[0]=x+step ypos[0]=y for (i=0; i

2008.02.20. 21:03 Idzet


Etalon


2008.02.20. 15:01 Idzet

Cya Fanta!

Pr dolog:

Elad paci!


Bannerek, egy oldirl, NEM LOPTAM!!! Szltam a szerkinek, s odaadta!


Mg kt elad pacc:

------------------------------------------------------------------------------------------------------


Illetve, csak neked, az elz oldalrl egy Zolis fzetbort!

 

Etalon


2008.02.16. 11:47 Idzet

Glitter Photos
[Glitterfy.com - *Glitter Photos*]


2008.02.16. 11:03 Idzet

Waldo

Pac:


Etalon


2008.02.14. 19:14 Idzet

Ezeket majd kitrlm, Fanti, de mg kellenek nekem!


Talltam egypr lovat, amely lehet Mercutio nagykorban... Nzd meg ket!


Ez j lenne alapkpnek, ha milytaryversenyt csinlnnk...


Ez biztos tecceni fog... Narancssrga szem, fekete kutya!


Egy l oldi:

//gportal.hu/portal/domino-lovasudvar/

//gportal.hu/portal/sokok/


Tirol Tirolban!


Kristly


Benvolio


Lovarda


Etalon

 


2008.02.14. 16:26 Idzet


2008.02.13. 20:05 Idzet

//gportal.hu/portal/azenlovasrajzom/

 


2008.02.09. 22:13 Idzet

Szia Fanta!

Itt vannak a megbeszlt ruk Bucefalo-rt cserbe:

1.Western nyereg

2.Nyereg pnik szmra

3.Ausztrl nyereg

4.Djlovas nyereg

5.Malachit nyereg

6.Lovagl csizma

7.Horka Linie Hawk kobak

8.Horka Tension dzseki

9.Lovaglkeszty tbbfle sznben

10.Futszr

11.Djlovas nyereg

12.Ugrnyereg

13.Wellington ugrnyereg

14.Shootlak ugrnyereg

 

15.Sure Grip kantrszr

16.Egy klnlegesebb ktfk+vezetszr(kllemversenyekre ajnlott!)

17.Martingl

Ennyi lenne,remlem ez gy j lesz...

abi77


2008.02.06. 18:30 Idzet

BaÌh!


2008.02.04. 20:33 Idzet
SzmlL
Induls: 2007.05.17.

2008.02.04. 18:20 Idzet
 
dv az oldalon! Ez egy prbaablak!!!
 

2008.02.03. 17:35 Idzet


2008.02.02. 20:09 Idzet

Rafi:

http://img0.tar.hu/bucika0130/size2/33420737.jpg

http://img0.tar.hu/bucika0130/size2/33420736.jpg

http://img0.tar.hu/bucika0130/size2/33420732.jpg

http://img0.tar.hu/bucika0130/size2/33420731.jpg

http://img0.tar.hu/bucika0130/size2/33420729.jpg

http://img0.tar.hu/bucika0130/size2/33420728.jpg

 

http://img0.tar.hu/bucika0130/size2/33420727.jpg

http://img0.tar.hu/bucika0130/size2/33420725.jpg

 http://img0.tar.hu/bucika0130/size2/33420724.jpg

Tulajdonos: nincs

E-mail:

Anyja: (te adod meg)

Apja: (te adod meg)

Kora: 6 v

Hvneve: (te adod meg)

Ivara: mn

Fajtja: Nmet pni

Tulajdonsgai: ?? (ezt az rja be aki megveszi a lovat)

Tudsa: oxer, meredek, kettesugrs

Kpzettsge: djugrats (B/3)

Paprjai:

http://re2.mm-c1.yimg.com/image/1387976832

http://www.steinhart.hu/kutya/kutyakepek/t1.jpg

 

Pnze: 800.000.-

Eredmnyei:

Nyeremnyei:

Csiki:

Fedezett kanck:

Edzstervei:

 


2008.02.02. 20:03 Idzet

Slawikok:

Welsh A Garlic 40781

Welsh A Garlic 40773

Welsh A Garlic 40756

Welsh A Garlic 40751

 Welsh A Garlic 40750

Welsh A Garlic 40745

Welsh A Garlic 40740

Welsh A Garlic 40738

Welsh A Garlic 40761

Welsh A Garlic 40754

Welsh A Garlic 40743

Welsh A Garlic 40731

Welsh A Garlic 40725

Welsh A Garlic 4072

Welsh A Garlic 40717

Welsh A Garlic 40711

 2. welsh pni, mn:

Welsh Pony Mix 46

Welsh Pony Mix Ronja 78

Welsh Pony Mix Ronja 4

Welsh Pony Mix Ronja 27

Welsh Pony Mix Ronja 15

Welsh Pony Mix Ronja 13

Welsh Pony Mix 41

Welsh Pony Mix 30


2008.01.29. 14:35 Idzet

szparab:


2008.01.28. 21:21 Idzet

wsternpac:


Lovaglsoktatsunk!


Csongorka


Fantival a hatrban!


Westernbungall


Raffaello


Pitus:


Cp


Ez azrt nem semmi!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Etalon


2008.01.21. 06:13 Idzet

Angol telivr:


Olyan m, nem?


Szp!

Araber Dahab 10814.JPG


[84-65] [64-45] [44-25] [24-5] [4-1]

 
Mi legyen?
Lezrt szavazsok
 
Blcsessgek
 
SzmlL
Induls: 2007-05-17
 

Hímes tojás, nyuszipár, téged vár a Mesetár! Kukkants be hozzánk!    *****    Dryvit, hõszigetelés! Vállaljuk családi házak, nyaralók és egyéb épületek homlokzati szigetelését! 0630/583-3168    *****    Nagyon ütõs volt a Nintendo Switch 2 Direct! Elemzést a látottakról pedig itt olvashatsz!    *****    Elkészítem születési horoszkópod és ajándék 3 éves elõrejelzésed. Utána szóban minden kérdésedet megbeszéljük! Kattints    *****    Könyves oldal - egy jó könyv, elrepít bárhová - Könyves oldal    *****    20 éve jelent meg a Nintendo DS! Emlékezzünk meg ról, hisz olyan sok szép perccel ajándékozott meg minket a játékaival!    *****    Ha érdekelnek az animék,mangák,videojátékok, japán és holland nyelv és kultúra, akkor látogass el a személyes oldalamra.    *****    Dryvit, hõszigetelés! Vállaljuk családi házak, nyaralók és egyéb épületek homlokzati szigetelését! 0630/583-3168 Hívjon!    *****    Könyves oldal - Ágica Könyvtára - ahol megnézheted milyen könyveim vannak, miket olvasok, mik a terveim...    *****    Megtörtént Bûnügyekkel foglalkozó oldal - magyar és külföldi esetek.    *****    Why do all the monsters come out at night? - Rose Harbor, a város, ahol nem a természetfeletti a legfõbb titok - FRPG    *****    A boroszkányok gyorsan megtanulják... Minden mágia megköveteli a maga árát. De vajon mekkora lehet ez az ár? - FRPG    *****    Alkosd meg a saját karaktered, és irányítsd a sorsát! Vajon képes lenne túlélni egy ilyen titkokkal teli helyen? - FRPG    *****    Mindig tudnod kell, melyik kiköt&#245; felé tartasz. - ROSE HARBOR, a mi városunk - FRPG    *****    Akad mindannyijukban valami közös, valami ide vezette õket, a delaware-i aprócska kikötõvárosba... - FRPG    *****    boroszkány, vérfarkas, alakváltó, démon és angyal... szavak, amik mind jelentenek valamit - csatlakozz közénk - FRPG    *****    Why do all the monsters come out at night? - Rose Harbor, a város, ahol nem a természetfeletti a legfõbb titok - FRPG    *****    why do all monsters come out at night - FRPG - Csatlakozz közénk! - Írj, és éld át a kalandokat!    *****    CRIMECASESNIGHT - Igazi Bûntényekkel foglalkozó oldal    *****    Figyelem, figyelem! A második vágányra karácsonyi mese érkezett! Mesés karácsonyt kíván mindenkinek: a Mesetáros