ÿþ <HTML> <HEAD> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <TITLE>Schmetterlingszucht</TITLE> <SCRIPT language=JavaScript type=text/javascript src="../Javas/onmouseover.js"> </SCRIPT> <SCRIPT language=JavaScript src="../Javas/dynlib.js"> </SCRIPT> <SCRIPT language=JavaScript src="../Javas/bouncingimages.js"> </SCRIPT> <meta http-equiv="imagetoolbar" content="no"> <script language="JavaScript" src="../Javas/x.js" type="text/javascript"></script> <script language="JavaScript" src="../Javas/ic.js" type="text/javascript"></script> <script language="JavaScript" src="../Javas/lupe.js" type="text/javascript"></script> </HEAD> <script language="JavaScript" type="text/javascript"> <!-- CLupeHTML(); //--> </script> <BODY style="BACKGROUND-IMAGE: url(../Menue/Menue_NaturimBild.jpg); BACKGROUND-COLOR: #006666; MARGIN: 0px; BACKGROUND-REPEAT: no-repeat; BACKGROUND-POSITION: center top"; body onLoad="javascript:loadBouncingImages();"> <DIV style="POSITION: absolute; WIDTH: 11px; HEIGHT: 11px; VISIBILITY: hidden; TOP: 0px; LEFT: 0px" id=dot0><IMG src="Monarch.gif" width=11 height=11> </DIV> <DIV style="POSITION: absolute; WIDTH: 11px; HEIGHT: 11px; TOP: 681px; LEFT: 216px" id=dot1><IMG src="Monarch.gif" width=11 height=11> </DIV> <DIV style="POSITION: absolute; WIDTH: 11px; HEIGHT: 11px; TOP: 725px; LEFT: 214px" id=dot2><IMG src="Monarch.gif" width=15 height=15> </DIV> <DIV style="POSITION: absolute; WIDTH: 11px; HEIGHT: 11px; TOP: 763px; LEFT: 212px" id=dot3><IMG src="Monarch.gif" width=19 height=19> </DIV> <DIV style="POSITION: absolute; WIDTH: 11px; HEIGHT: 11px; TOP: 795px; LEFT: 211px" id=dot4><IMG src="Monarch.gif" width=23 height=23> </DIV> <DIV style="POSITION: absolute; WIDTH: 11px; HEIGHT: 11px; TOP: 822px; LEFT: 211px" id=dot5><IMG src="Monarch.gif" width=27 height=27> </DIV> <DIV style="POSITION: absolute; WIDTH: 11px; HEIGHT: 11px; TOP: 844px; LEFT: 211px" id=dot6><IMG src="Monarch.gif" width=31 height=31> </DIV> <DIV style="POSITION: absolute; WIDTH: 11px; HEIGHT: 11px; TOP: 859px; LEFT: 211px" id=dot7><IMG src="Monarch.gif" width=35 height=35> </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 = 8; 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> <TABLE border=0 width=1024 align=center height=220> <TBODY> <TR> <TD width=620><IMG align=center src="../Menue/Menue_placeholder.gif" width=620 height=220> </TD> <TD width=404><IMG style="POSITION: relative; TOP: 0px; LEFT: 180px" src="Sz_Schmetterlingsjaeger.GIF" width=90> </TD></TR></TBODY></TABLE> <TABLE border=0 width=1024 align=center> <TBODY> <TR> <TD> <A onmouseover="a1.src='../Menue/Menue_Start_g.jpg';" onmouseout="a1.src='../Menue/Menue_Start_b.jpg';" href="../Index.htm" name=a1> <IMG border=0 name=a1 alt="" src="../Menue/Menue_Start_b.jpg" height=38></A> <A onmouseover="a2.src='../Menue/Menue_Literatur_g.jpg';" onmouseout="a2.src='../Menue/Menue_Literatur_b.jpg';" href="../Literatur/Parnassius Apollo - Seine Unterarten.htm" name=a2> <IMG border=0 name=a2 alt="" src="../Menue/Menue_Literatur_b.jpg" height=38></A> <A onmouseover="a3.src='../Menue/Menue_Bildergalerie_g.jpg';" onmouseout="a3.src='../Menue/Menue_Bildergalerie_b.jpg';" href="../Bildergalerie/Bildergalerie.htm" name=a3> <IMG border=0 name=a3 alt="" src="../Menue/Menue_Bildergalerie_b.jpg" height=38></A> <a href="../Videos/Videos.htm" onmouseover="a7.src='../Menue/Menue_Videos_g.jpg';" onmouseout="a7.src='../Menue/Menue_Videos_b.jpg';" name="a7"> <img src="../Menue/Menue_Videos_b.jpg" height="38" border="0" alt="" name="a7"></a> <A onmouseover="a4.src='../Menue/Menue_Impressum_g.jpg';" onmouseout="a4.src='../Menue/Menue_Impressum_b.jpg';" href="../Impressum/Impressum.htm" name=a4> <IMG border=0 name=a4 alt="" src="../Menue/Menue_Impressum_b.jpg" height=38></A> <A onmouseover="a5.src='../Menue/Menue_Schmetterlingszucht_g.jpg';" onmouseout="a5.src='../Menue/Menue_Schmetterlingszucht_g.jpg';" name=a5> <IMG border=0 name=a5 alt="" src="../Menue/Menue_Schmetterlingszucht_g.jpg" height=38></A> <A onmouseover="a6.src='../Menue/Menue_Links_g.jpg';" onmouseout="a6.src='../Menue/Menue_Links_b.jpg';" href="../Links/Links.htm" name=a6> <IMG border=0 name=a6 alt="" src="../Menue/Menue_Links_b.jpg" height=38></A> <BR><BR></TD></TR></TBODY></TABLE> <TABLE border=1 width=1024 align=center> <TBODY> <TR> <TD colSpan=7 align=center> <H1> <P style="COLOR: #ffffff">Zuchtmaterial</H1></P></TD></TR> <TR> <TD> <H3> <P style="COLOR: #ffffff">Bild</P></H3></TD> <TD> <H3> <P style="COLOR: #ffffff">Name</P></H3></TD> <TD> <H3> <P style="COLOR: #ffffff">Herkunft</P></H3></TD> <TD> <H3> <P style="COLOR: #ffffff">Liefer-<BR>Termin</P></H3></TD> <TD> <H3> <P style="COLOR: #ffffff">Menge</P></H3></TD> <TD> <H3> <P style="COLOR: #ffffff">Preis / ¬ </P></H3></TD> <TD width=70 align=center> <H3> <P style="COLOR: #ffffff"><IMG src="Sz_Info-b.GIF" width=20><BR>Zucht/<br>Pflanze</P></H3></TD></TR> <TR> <TD width=100> <P style="COLOR: #ffff00"> <a href="javascript:CLupeZoom('zoomID1','imgs_Zucht/Papilio machaon.jpg')"> <img id="zoomID1" src="imgs_Zucht/Papilio machaon.jpg" width="100" alt="Einfach-Klick zum Vergrössern! Doppelklick zur Vollanzeige!" border="0"></a> </p> </TD> <TD> <H4> <P style="COLOR: #ffff00"><I>Papilio machaon</I></P></H4></TD> <TD> <H4> <P style="COLOR: #ffff00">Möhrendorf</P></H4></TD> <TD> <H4> <P style="COLOR: #ffff00">sofort</P></H4></TD> <TD> <H4> <P style="COLOR: #ffff00">1 Dtzd Eier</P></H4></TD> <TD> <H4> <P style="COLOR: #ffff00">6 ¬ </P></H4></TD> <TD align=center> <P style="COLOR: #ffff00"><A onmouseover="a9.src='Sz_Info-g.GIF';" onmouseout="a9.src='Sz_Info-b.GIF';" href="InfoZucht/Schwalbenschwanz.htm" name=a9 target=_blank><IMG border=0 name=a9 alt="" src="Sz_Info-b.GIF" width=20></A></P> </TD></TR> <TR> <TD width=100> <P style="COLOR: #ffff00"> <a href="javascript:CLupeZoom('zoomID2','imgs_Zucht/Zerynthia polyxena.jpg')"> <img id="zoomID2" src="imgs_Zucht/Zerynthia polyxena.jpg" width="100" alt="Einfach-Klick zum Vergrössern! Doppelklick zur Vollanzeige!" border="0"></a> </p></TD> <TD> <H4> <P style="COLOR: #ffff00"><I>Zerynthia p. polyxena</I></P></H4></TD> <TD> <H4> <P style="COLOR: #ffff00">Ungarn</P></H4></TD> <TD> <H4> <P style="COLOR: #ffff00">M 07.2012</P></H4></TD> <TD> <H4> <P style="COLOR: #ffff00">1 Puppe</P></H4></TD> <TD> <H4> <P style="COLOR: #ffff00">1,50 ¬ </P></H4></TD> <TD align=center> <H4> <P style="COLOR: #ffff00">A.clematitis</P></H4></TD> </TR> &nbsp; <TR> <TD width=100> <P style="COLOR: #ffff00"> <a href="javascript:CLupeZoom('zoomID3','imgs_Zucht/Zerynthia demnosia.jpg')"> <img id="zoomID3" src="imgs_Zucht/Zerynthia demnosia.jpg" width="100" alt="Einfach-Klick zum Vergrössern! Doppelklick zur Vollanzeige!" border="0"></a> </p></TD> <TD> <H4> <P style="COLOR: #ffff00"><I>Zerynthia polyxena demnosia</I></P></H4></TD> <TD> <H4> <P style="COLOR: #ffff00">Krk</P></H4></TD> <TD> <H4> <P style="COLOR: #ffff00">sofort</P></H4></TD> <TD> <H4> <P style="COLOR: #ffff00">10 Eier</P></H4></TD> <TD> <H4> <P style="COLOR: #ffff00">15.- ¬ </P></H4></TD> <TD align=center> <H4> <P style="COLOR: #ffff00">A.rotunda</P></H4></TD> </TR> &nbsp; </TBODY></TABLE><BR><BR><BR><BR> <TABLE border=0 cellSpacing=0 cellPadding=0 width=1024 align=center> <TBODY> <TR> <TD><FONT color=#ff0000 size=+1><B>Bestellungen an:</FONT> <A href="mailto:helmut.glassl@schmetterlingsfreund.de"><B><FONT color=#0000ff>helmut.glassl@schmetterlingsfreund.de</FONT></B></A> </B></TD> <TD align=right></TD></TR></TBODY></TABLE> </BODY> </HTML>