ÿþ<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML><HEAD><TITLE>@~@ Lafrebella Persians - Links @~@</TITLE> <META name=resource-type content=document> <META name=GENERATOR content="MSHTML 8.00.6001.23181"> <META content=no-cache http-equiv=pragma> <META name=revisit-after content="30 days"> <META name=description content="Lafrebella Persians - breeding top quality persians in a variety of colours including selfs, bicolours, tabbies &amp; whites. I are in Buckinghamshire. I have been breeding and showing cats since 1970 and I am a GCCF judge. "> <META name=MSSmartTagsPreventParsing content=TRUE> <META name=keywords content="cats, buckinghamshire, UK, cattery, lafrebella, persians, kittens, cat shows, gccf, pkd negative, isobella bangs, pictures, photos, cute kittens, breed info, pedigree, bicolour, white, blue, cats for sale, judge,"> <META name=robots content=ALL> <META name=distribution content=Global> <META name=rating content="Safe For Kids"> <META name=copyright content="Jackie Jones"> <META name=author content="Jackie Jones"> <META content=imsbangs@aol.com http-equiv=reply-to> <META name=language content=english> <META name=doc-type content="Web Page"> <META name=doc-class content=Completed> <META name=doc-rights content="Copyrighted Work"> <META content=RevealTrans(Duration=4,Transition=23) http-equiv=Page-Enter><BGSOUND loop=infinite src=""> <STYLE type=text/css>BODY { COLOR: #e2dcb8 } TD { COLOR: #e2dcb8 } TH { COLOR: #e2dcb8 } BODY { BACKGROUND-COLOR: #0c0c0c } A:link { COLOR: #e2dcb8 } A:visited { COLOR: #e2dcb8 } A:hover { COLOR: #e2dcb8 } A:active { COLOR: #e2dcb8 } .style1 { COLOR: #e2dcb8 } .style5 { COLOR: #e2dcb8 } </STYLE> <META content="text/html; charset=unicode" http-equiv=Content-Type></HEAD> <BODY> <STYLE type=text/css>BODY { SCROLLBAR-ARROW-COLOR: #0c0c0c; SCROLLBAR-BASE-COLOR: #e2dcb8; SCROLLBAR-TRACK-COLOR: #0c0c0c; scrollbar-dark-shadow-color: #E2DCB8 } </STYLE> <SCRIPT language=JavaScript> <!-- //Disable right click script III- By Renigade (renigade@mediaone.net) //For full source code, visit http://www.dynamicdrive.com var message="Sorry, you can't do that"; /////////////////////////////////// function clickIE() {if (document.all) {(message);return false;}} function clickNS(e) {if (document.layers||(document.getElementById&&!document.all)) { if (e.which==2||e.which==3) {(message);return false;}}} if (document.layers) {document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;} else{document.onmouseup=clickNS;document.oncontextmenu=clickIE;} document.oncontextmenu=new Function("return false") // --> </SCRIPT> <!--Special Effects upon page enter Script- ýÿ Dynamic Drive (www.dynamicdrive.com) For full source code, installation instructions, 100's more DHTML Scripts, and Terms Of Use, visit dynamicdrive.com--> <DIV style="POSITION: absolute; WIDTH: 35px; HEIGHT: 50px; VISIBILITY: hidden" id=dot0><IMG src="bullet.gif" width=35 height=50> </DIV> <DIV style="POSITION: absolute; WIDTH: 30px; HEIGHT: 45px" id=dot1><IMG src="bullet.gif" width=30 height=45> </DIV> <DIV style="POSITION: absolute; WIDTH: 25px; HEIGHT: 40px" id=dot2><IMG src="bullet.gif" width=25 height=40> </DIV> <DIV style="POSITION: absolute; WIDTH: 20px; HEIGHT: 35px" id=dot3><IMG src="bullet.gif" width=20 height=35> </DIV> <DIV style="POSITION: absolute; WIDTH: 15px; HEIGHT: 30px" id=dot4><IMG src="bullet.gif" width=15 height=30> </DIV> <DIV style="POSITION: absolute; WIDTH: 15px; HEIGHT: 30px; TOP: 4px; LEFT: 129px" id=dot5><IMG src="bullet.gif" width=15 height=35> </DIV> <DIV style="POSITION: absolute; WIDTH: 15px; HEIGHT: 30px" id=dot6><IMG src="bullet.gif" width=15 height=30> </DIV> <SCRIPT language=JavaScript> <!-- hide code /* Elastic Trail script (By Philip Winston @ pwinston@yahoo.com, URL: http://www.geocities.com/pwinston/) Script featured on Dynamicdrive.com For this and 100's more DHTML scripts, visit http://dynamicdrive.com */ var nDots = 7; 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; // Positive XGRAVITY pulls right, negative pulls left // Positive YGRAVITY pulls down, negative up var XGRAVITY = 0; var YGRAVITY = 50; // RESISTANCE determines a slowing force proportional to velocity 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 // <LI> 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()", 1000); } } 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 <ul> 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 + XGRAVITY, (spring.Y + resist.Y)/ MASS + YGRAVITY); // 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 + window.pageYOffset; width = window.innerWidth + window.pageXOffset; } else { height = document.body.clientHeight + document.body.scrollTop; width = document.body.clientWidth + document.body.scrollLeft; } // bounce off 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; } } // end code hiding --> </SCRIPT> <DIV align=center> <CENTER> <TABLE style="BORDER-COLLAPSE: collapse" border=0 cellSpacing=0 cellPadding=0 width=780 background=webset_2x1.jpg> <TBODY> <TR> <TD vAlign=bottom align=left><IMG border=0 src="webset_1x1roses.jpg" width=780 height=163></TD></TR> <TR> <TD height=7276 vAlign=bottom align=left> <P class=style1 align=center>&nbsp;<IMG border=0 src="lafrebella._top.links.jpg" width=267 height=182></P> <DIV class=style1 align=center> <CENTER> <TABLE style="BORDER-COLLAPSE: collapse" border=0 cellSpacing=0 cellPadding=0 width="85%"> <TBODY> <TR> <TD width="100%"> <P align=center><FONT size=4><B>If you would like to exchange a link with us, please send your banner .</B></FONT></P> <P align=center><FONT size=4><B>Please choose one of ours for your links page, and link it to</B></FONT></P> <P align=center><FONT size=4><B><A href="http://lafrebella.tripod.com/">http://lafrebella.tripod.com/</A></B></FONT></P> <P align=center><IMG border=0 src="lafrebellaicecrystalbanner.jpg" width=320 height=249></P> <P align=center><IMG border=0 alt="Lafrebella Banner" src="banner2_lafrebella.jpg" width=362 height=202></P> <P align=center><IMG border=0 alt="Lafrebella Banner" src="banner3_lafrebella.jpg" width=261 height=262></P> <P align=center><IMG border=0 alt=bullet src="bullet1.jpg" width=54 height=46></P></TD></TR></TBODY></TABLE></CENTER></DIV> <DIV class=style1 align=center> <CENTER> <TABLE style="BORDER-COLLAPSE: collapse" border=0 cellSpacing=0 cellPadding=0 width=680> <TBODY> <TR> <TD> <P align=center><A href="http://www.zendique.com/" target=_blank><IMG border=0 alt=Zendique src="zendiquebanner-Dec041.jpg" width=200 height=186></A></P></TD> <TD> <P align=center><A href="http://www.lorien-cats.com/index1.html" target=_blank><IMG border=0 alt="Loriens Cats" src="lorienscats_banner.jpg" width=318 height=119></A></P></TD></TR></TBODY></TABLE></CENTER></DIV> <DIV class=style1 align=center> <CENTER> <TABLE style="BORDER-COLLAPSE: collapse" border=0 cellSpacing=0 cellPadding=4 width="85%"> <TBODY> <TR> <TD width="50%"> <P align=center><A href="http://www.labrifelin.com/" target=_blank><IMG border=0 alt=Labrifelin src="logolpersianlist.jpg" width=163 height=78></A></P></TD> <TD width="50%"> <P align=center><A href="http://www.tufftybee.co.uk/" target=_blank><IMG border=0 alt=Tuftybee src="tufftybeebanner.jpg" width=404 height=83></A></P></TD></TR></TBODY></TABLE></CENTER></DIV> <DIV class=style1 align=center> <CENTER> <TABLE style="BORDER-COLLAPSE: collapse" border=0 cellSpacing=0 cellPadding=0 width="86%"> <TBODY> <TR> <TD width="100%"> <P align=center><A href="http://www.witchwillow.com/" target=_blank><IMG border=0 alt="Witchwillow Cats" src="witchwillow_banner1.jpg" width=301 height=113></A></P></TD></TR></TBODY></TABLE></CENTER></DIV> <P class=style1 align=center><A href="http://www.aristocats-cattery.co.uk/" target=_blank><IMG border=0 alt="Tinabee Exotics" src="tinabeepersiansbanner.jpg" width=410 height=132></A></P> <P class=style1 align=center><A href="http://www.ahmischi.com/" target=_blank><IMG border=0 alt="Ahmischi Persians" src="AhmischiBestBannerIcy.jpg" width=459 height=234></A></P> <P class=style1 align=center><A href="http://www.ahmischi.com/" target=_blank><BR></A><A href="http://www.monarcha.cz/" target=_blank><IMG border=0 src="monarcha_banner.gif" width=400 height=200></A></P> <P class=style1 align=center><A href="http://www.aberchalderpersians.co.uk/" target=_blank><IMG border=0 alt=Aberchalder src="abernewban.jpg" width=615 height=138></A></P> <P class=style1 align=center><A href="http://www.vivaldi.org.uk/" target=_blank><IMG border=0 alt="Vivaldi Persians" src="goldvivaldibanner.jpg" width=300 height=226></A></P> <P class=style1 align=center><A href="http://www.world-wide-cats.com/" target=_blank><IMG border=0 alt="World Wide Cats" src="bannerwwcklein1.jpg" width=350 height=79></A></P> <P class=style1 align=center><A href="http://www.mankies-perserkatzen.de/" target=_blank><IMG border=0 alt="Mankies Persians" src="Mankie_Persians.jpg" width=325 height=343></A></P> <P class=style1 align=center><A href="http://xoomer.alice.it/persianspage/" target=_blank><IMG border=0 src="persianspage.jpg" width=180 height=98></A></P> <P class=style1 align=center><A href="http://www.sophanisepersians.co.uk/" target=_blank><IMG border=0 alt="Spohanise Persians" src="Banner2008Sophanisepersians.jpg" width=322 height=193></A></P> <P class=style1 align=center><A href="http://www.ab-loverly-cat.com/" target=_blank><IMG border=0 src="abloverlybanner.jpg" width=200 height=237></A></P> <P class=style1 align=center><A href="http://www.akalankapersians.com/" target=_blank><IMG border=0 alt=Akalanka src="Akalankapersiansbanner.jpg" width=400 height=250></A></P> <P class=style1 align=center><A href="http://www.supremecatshow.org/" target=_blank><IMG border=0 alt="Supreme Cat Show" src="Header01.jpg" width=400 longDesc="http://www.supremecatshow.org/" height=128></A></P> <P class=style1 align=center><A href="http://lafrebella.tripod.com/http;//www.rosebridgepersians.co.uk" target=_blank><IMG border=0 alt="Rosebridge Persians" src="rosebridgebanner2.jpg" width=306 height=202></A></P> <p align="center"><a href="http://www.inkypawspersians.co.uk"><img src="inkypawsbanner2.jpg" alt="Inkypaws Persians" width="350" height="202" border="0"></a><br> <br> <a href="http://www.tazkatspersians.co.uk" target="_blank"><img src="tazkatsbanner2.jpg" width="350" height="326" border="0" alt="Tazkats Persians"></a><br> <br> <a href="http://www.baygazerbirmans.co.uk" target="_blank"><img src="baygazerbanner1.jpg" alt="Baygazer Birmans" width="400" height="161" border="0"></a> <br> <br> <a href="http://www.demelzapersians.co.uk" target="_blank"><img src="demelzabanner2oct08.jpg" alt="Demelza Persians" width="400" height="168" border="0"></a> <br> <br> <a href="http://www.jemleybirmans.co.uk" target="_blank"><img src="jemleybanner2sep11.jpg" alt="Jermley Birmans" width="320" height="212" border="0"></a> <br> <br> <a href="http://www.kittiq-persians.co.uk" target="_blank"><img src="kittiqbanner5.jpg" alt="Kittiq Persians" width="300" height="298" border="0"></a><br> <br> <a href="http://lordstonesbirmans.webs.com/" target="_blank"><img src="lordstonesbanner.jpg" alt="Lordstones Birmans" width="306" height="150" border="0"></a> <br> <br> <a href="http://www.pippakits.uk" target="_blank"><img src="pippakitsbannerapril10.jpg" alt="Pippakits Exotics &amp; Persians" width="450" height="98"></a><br> <br> <a href="http://www.smartzeepersians.co.uk" target="_blank"><img src="smartzeebanner2.jpg" alt="Smartzee Persians" width="350" height="350" border="0"></a> <br> <br> <a href="http://www.aqueserrapersians.co.uk" target="_blank"><img src="aqueserrabannerjune.jpg" width="364" height="211" border="0" alt="Aqueserra Persians"></a></p> <P class=style1 align=center><A href="http://www.buddies.co.uk/" target=_blank><IMG border=0 alt=" Pet Insurance" src="buddies_490x80_cat.jpg" width=490 height=80></A></P> <P class=style1 align=center><a href="http://www.persianpower.co.uk" target="_blank"><img src="persianpowerbannerjun12.jpg" alt="PersianPower Web Design" width="500" height="181"></a></P> <P class=style1 align=center><SPAN class=style5><IMG border=0 alt=bullet src="bullet1.jpg" width=54 height=46></SPAN></P> <DIV class=style1 align=center> <CENTER> <TABLE style="BORDER-COLLAPSE: collapse" border=0 cellSpacing=4 cellPadding=2 width=467 align=center> <TBODY> <TR> <TD width=155> <P align=center><A href="http://lafrebella.tripod.com/index.htm"><IMG border=0 alt="Home page" src="lafrebella.button_home.jpg" width=125 height=52></A></P></TD> <TD width=141> <P align=center><A href="http://lafrebella.tripod.com/males.htm"><IMG border=0 alt="Males page" src="lafrebella.button_males.jpg" width=125 height=52></A></P></TD> <TD width=143> <DIV align=center><A href="http://lafrebella.tripod.com/females.htm"><IMG border=0 alt="Females page" src="lafrebella.button_females.jpg" width=125 height=52></A></DIV></TD></TR> <TR> <TD> <P align=center><A href="http://lafrebella.tripod.com/kittens.htm"><IMG border=0 alt="Kittens page" src="lafrebella.button_kittens.jpg" width=125 height=52></A></P></TD> <TD> <P align=center><A href="http://lafrebella.tripod.com/gallery.htm"><IMG border=0 alt="Past cats and kittens" src="lafrebella.button_gallery.jpg" width=125 height=52></A></P></TD> <TD> <P align=center><A href="http://lafrebella.tripod.com/links.htm"><IMG border=0 alt="Cat related links" src="lafrebella.button_links.jpg" width=125 height=52></A></P></TD></TR> <TR> <TD height=87> <DIV align=center></DIV></TD> <TD> <DIV align=center><A href="mailto:imsbangs@aol.com"><IMG border=0 alt="Email me" src="lafrebella_email.gold.jpg" width=125 height=83></A></DIV></TD> <TD> <DIV align=center></DIV></TD></TR></TBODY></TABLE> <P>Maintained by <A href="http://www.persianpower.co.uk/" target=_blank>PersianPower Web Design</A><A href="http://www.persianpower.bravehost.com/" target=_blank></A>. 1st July 2007 </P></CENTER></DIV></TD></TR> <TR> <TD height=163 vAlign=bottom align=left><IMG border=0 src="webset_3x1.jpg" width=780 height=163></TD></TR></TBODY></TABLE></CENTER></DIV></BODY></HTML>