Blog-Frisstsek-Foldal
Archvum - 2016.

szines lufik bolyong effekt

<script type="text/javascript" language="JavaScript">
/*
Flying Butterfly script (By [email protected])
Modified slightly/ permission granted to Dynamic Drive to feature script in archive
For full source, visit http://www.dynamicdrive.com
*/ 
var Ymax=8;     //MAX # OF PIXEL STEPS IN THE "y" DIRECTION // massimo spostamento direzione Y in pixel ........
var Xmax=8;    //MAX # OF PIXEL STEPS IN THE "x" DIRECTION  // massimo spostamento direzione X in pixel .......... 
var Tmax=10000; //MAX # OF MILLISECONDS BETWEEN PARAMETER CHANGES // tempo massimo (millisecondi) tra il cambio di parametri.........
 
//FLOATING IMAGE URLS FOR EACH IMAGE. ADD OR DELETE ENTRIES. KEEP ELEMENT NUMERICAL ORDER STARTING WITH "0" !!
// Qui le immagini.quante ne vuoi basta che seguano l'ordine come qui sotto.........
var floatimages=new Array();
floatimages[0]='//jegvirag.gportal.hu/portal/jegvirag/image/gallery/1454092317_08.gif';
floatimages[1]='//jegvirag.gportal.hu/portal/jegvirag/image/gallery/1454092317_08.gif';
floatimages[2]='//jegvirag.gportal.hu/portal/jegvirag/image/gallery/1454092317_08.gif';
floatimages[3]='//jegvirag.gportal.hu/portal/jegvirag/image/gallery/1454092317_08.gif';
 
//*********DO NOT EDIT BELOW*********** NON VARIARE NULLA NELLA ZONA SOTTOSTANTE ****************** //
var NS4 = (navigator.appName.indexOf("Netscape")>=0 && parseFloat(navigator.appVersion) >= 4 && parseFloat(navigator.appVersion) < 5)? true : false;
var IE4 = (document.all)? true : false;
var NS6 = (parseFloat(navigator.appVersion) >= 5 && navigator.appName.indexOf("Netscape")>=0 )? true: false;
var wind_w, wind_h, t='', IDs=new Array();
for(i=0; i<floatimages.length; i++){
t+=(NS4)?'<layer name="pic'+i+'" visibility="hide" width="10" height="10"><a href="javascript:hidebutterfly()">' : '<div id="pic'+i+'" style="position:absolute; visibility:hidden;width:10px; height:10px"><a href="javascript:hidebutterfly()">';
t+='<img src="'+floatimages[i]+'" name="p'+i+'" border="0">';
t+=(NS4)? '</a></layer>':'</a></div>';
}
document.write(t); 
function moveimage(num){
if(getidleft(num)+IDs[num].W+IDs[num].Xstep >= wind_w+getscrollx())IDs[num].Xdir=false;
if(getidleft(num)-IDs[num].Xstep<=getscrollx())IDs[num].Xdir=true;
if(getidtop(num)+IDs[num].H+IDs[num].Ystep >= wind_h+getscrolly())IDs[num].Ydir=false;
if(getidtop(num)-IDs[num].Ystep<=getscrolly())IDs[num].Ydir=true;
moveidby(num, (IDs[num].Xdir)? IDs[num].Xstep :  -IDs[num].Xstep , (IDs[num].Ydir)?  IDs[num].Ystep:  -IDs[num].Ystep);
function getnewprops(num){
IDs[num].Ydir=Math.floor(Math.random()*2)>0;
IDs[num].Xdir=Math.floor(Math.random()*2)>0;
IDs[num].Ystep=Math.ceil(Math.random()*Ymax);
IDs[num].Xstep=Math.ceil(Math.random()*Xmax)
setTimeout('getnewprops('+num+')', Math.floor(Math.random()*Tmax));
function getscrollx(){
if(NS4 || NS6)return window.pageXOffset;
if(IE4)return document.body.scrollLeft;
function getscrolly(){
if(NS4 || NS6)return window.pageYOffset;
if(IE4)return document.body.scrollTop;
}
function getid(name){
if(NS4)return document.layers[name];
if(IE4)return document.all[name];
if(NS6)return document.getElementById(name);
function moveidto(num,x,y){
if(NS4)IDs[num].moveTo(x,y);
if(IE4 || NS6){
IDs[num].style.left=x+'px';
IDs[num].style.top=y+'px';
}} 
function getidleft(num){
if(NS4)return IDs[num].left;
if(IE4 || NS6)return parseInt(IDs[num].style.left);
}
function getidtop(num){
if(NS4)return IDs[num].top;
if(IE4 || NS6)return parseInt(IDs[num].style.top);
function moveidby(num,dx,dy){
if(NS4)IDs[num].moveBy(dx, dy);
if(IE4 || NS6){
IDs[num].style.left=(getidleft(num)+dx)+'px';
IDs[num].style.top=(getidtop(num)+dy)+'px';
}}
 
function getwindowwidth(){
if(NS4 || NS6)return window.innerWidth;
if(IE4)return document.body.clientWidth;
}
function getwindowheight(){
if(NS4 || NS6)return window.innerHeight;
if(IE4)return document.body.clientHeight;
function init(){
wind_w=getwindowwidth();
wind_h=getwindowheight();
for(i=0; i<floatimages.length; i++){
IDs[i]=getid('pic'+i);
if(NS4){
IDs[i].W=IDs[i].document.images["p"+i].width;
IDs[i].H=IDs[i].document.images["p"+i].height;
}
if(NS6 || IE4){
IDs[i].W=document.images["p"+i].width;
IDs[i].H=document.images["p"+i].height;
}
getnewprops(i);
moveidto(i , Math.floor(Math.random()*(wind_w-IDs[i].W)), Math.floor(Math.random()*(wind_h-IDs[i].H)));
if(NS4)IDs[i].visibility = "show";
if(IE4 || NS6)IDs[i].style.visibility = "visible";
startfly=setInterval('moveimage('+i+')',Math.floor(Math.random()*100)+100);
}} 
function hidebutterfly(){
for(i=0; i<floatimages.length; i++){
if (IE4)
eval("document.all.pic"+i+".style.visibility='hidden'")
else if (NS6)
document.getElementById("pic"+i).style.visibility='hidden'
else if (NS4)
eval("document.pic"+i+".visibility='hide'")
clearInterval(startfly)
}
if (NS4||NS6||IE4){
window.onload=init;
window.onresize=function(){ wind_w=getwindowwidth(); wind_h=getwindowheight(); }
}
</script>
2016.02.09. 17:52, virgonc

duda trash effekt

<script language="JavaScript1.2">
//Flying planes - by John Ely
   //Modified from: Autumn leaves script- by Kurt Grigg ([email protected])
   //Modified by Dynamic Drive for NS6 functionality
   //visit http://www.dynamicdrive.com for this script
//Pre-load your image below!
   //CHANGE 5 to the number of images listed below
   grphcs=new Array(5)
//PRELOAD the involved images (extend or contract variables according to # of images used)
   Image0=new Image();
   Image0.src=grphcs[0]="//jegvirag.gportal.hu/portal/jegvirag/image/gallery/1454092317_89.gif"
   Image1=new Image();
   Image1.src=grphcs[1]="//jegvirag.gportal.hu/portal/jegvirag/image/gallery/1454092317_33.gif"
   Image2=new Image();
   Image2.src=grphcs[2]="//jegvirag.gportal.hu/portal/jegvirag/image/gallery/1454092317_89.gif"
   Image3=new Image();
   Image3.src=grphcs[3]="//jegvirag.gportal.hu/portal/jegvirag/image/gallery/1454092317_33.gif"
   Image4=new Image();
   Image4.src=grphcs[4]="//jegvirag.gportal.hu/portal/jegvirag/image/gallery/1454092317_89.gif"
//SPECIFY number of images to randomly display concurrently from list above. Less the more efficient
   Amount=3;
   Ypos=new Array();
   Xpos=new Array();
   Speed=new Array();
   Step=new Array();
   Cstep=new Array();
   ns=(document.layers)?1:0;
   ns6=(document.getElementById&&!document.all)?1:0;
   ie=document.all
if (ns){
   for (i = 0; i < Amount; i++){
   var P=Math.floor(Math.random()*grphcs.length);
   rndPic=grphcs[P];
   document.write("<LAYER NAME='sn"+i+"' LEFT=0 TOP=0><img src="+rndPic+"></LAYER>");
   }
   }
   else{
   document.write('<div style="position:absolute;top:0px;left:0px"><div style="position:relative">');
   for (i = 0; i < Amount; i++){
   var P=Math.floor(Math.random()*grphcs.length);
   rndPic=grphcs[P];
   document.write('<img id="si'+i+'" src="'+rndPic+'" style="position:absolute;top:0px;left:0px">');
   }
   document.write('</div></div>');
   }
   WinHeight=(ns||ns6)?window.innerHeight-70:window.document.body.clientHeight;
   WinWidth=(ns||ns6)?window.innerWidth:window.document.body.clientWidth;
   for (i=0; i < Amount; i++){                                                             
    Ypos[i] = Math.round(Math.random()*WinHeight);
    Xpos[i] = Math.round(Math.random()*WinWidth);
    Speed[i]= Math.random()*5+1;
    Cstep[i]=0;
    Step[i]=Math.random()*0.1+0.05;
   }
   function fly(){
   var WinHeight=(ns||ns6)?window.innerHeight:window.document.body.clientHeight;
   var WinWidth=(ns||ns6)?window.innerWidth-70:window.document.body.clientWidth;
   var hscrll=(ns||ns6)?window.pageYOffset:document.body.scrollTop;
   var wscrll=(ns||ns6)?window.pageXOffset:document.body.scrollLeft;
for (i=0; i < Amount; i++){
   sy = Speed[i]*Math.sin(Cstep[i]);
   sx = Speed[i]*2;
   Ypos[i]+=sy;
   Xpos[i]+=sx;
   if (Xpos[i] > WinWidth){
   Ypos[i]=Math.round(Math.random()*WinHeight);
   Xpos[i]=-60;
   Speed[i]=Math.random()*5+1;
   }
if (ns){
   document.layers['sn'+i].left=Xpos[i]+wscrll;
   document.layers['sn'+i].top=Ypos[i];
   }
else if (ns6){
   document.getElementById("si"+i).style.left=Xpos[i]+wscrll;
   document.getElementById("si"+i).style.top=Math.min(WinHeight,Ypos[i]);
   }
else{
   eval("document.all.si"+i).style.left=Xpos[i]+wscrll;
   eval("document.all.si"+i).style.top=Ypos[i];
   }
   Cstep[i]+=Step[i];
   }
   setTimeout('fly()',20);
   }
if (ie||ns||ns6)
   window.onload=fly
   //-->
   </script>
2016.02.09. 17:46, virgonc

piros,srga s zld lufi trash effekt

<script language="JavaScript1.2">
//Flying planes - by John Ely
   //Modified from: Autumn leaves script- by Kurt Grigg ([email protected])
   //Modified by Dynamic Drive for NS6 functionality
   //visit http://www.dynamicdrive.com for this script
//Pre-load your image below!
   //CHANGE 5 to the number of images listed below
   grphcs=new Array(5)
//PRELOAD the involved images (extend or contract variables according to # of images used)
   Image0=new Image();
   Image0.src=grphcs[0]="//jegvirag.gportal.hu/portal/jegvirag/image/gallery/1455034820_94.gif"
   Image1=new Image();
   Image1.src=grphcs[1]="//jegvirag.gportal.hu/portal/jegvirag/image/gallery/1455034819_10.gif"
   Image2=new Image();
   Image2.src=grphcs[2]="//jegvirag.gportal.hu/portal/jegvirag/image/gallery/1455034820_94.gif"
   Image3=new Image();
   Image3.src=grphcs[3]="//jegvirag.gportal.hu/portal/jegvirag/image/gallery/1455034819_60.gif"
   Image4=new Image();
   Image4.src=grphcs[4]="//jegvirag.gportal.hu/portal/jegvirag/image/gallery/1455034819_10.gif"
//SPECIFY number of images to randomly display concurrently from list above. Less the more efficient
   Amount=3;
   Ypos=new Array();
   Xpos=new Array();
   Speed=new Array();
   Step=new Array();
   Cstep=new Array();
   ns=(document.layers)?1:0;
   ns6=(document.getElementById&&!document.all)?1:0;
   ie=document.all
if (ns){
   for (i = 0; i < Amount; i++){
   var P=Math.floor(Math.random()*grphcs.length);
   rndPic=grphcs[P];
   document.write("<LAYER NAME='sn"+i+"' LEFT=0 TOP=0><img src="+rndPic+"></LAYER>");
   }
   }
   else{
   document.write('<div style="position:absolute;top:0px;left:0px"><div style="position:relative">');
   for (i = 0; i < Amount; i++){
   var P=Math.floor(Math.random()*grphcs.length);
   rndPic=grphcs[P];
   document.write('<img id="si'+i+'" src="'+rndPic+'" style="position:absolute;top:0px;left:0px">');
   }
   document.write('</div></div>');
   }
   WinHeight=(ns||ns6)?window.innerHeight-70:window.document.body.clientHeight;
   WinWidth=(ns||ns6)?window.innerWidth:window.document.body.clientWidth;
   for (i=0; i < Amount; i++){                                                             
    Ypos[i] = Math.round(Math.random()*WinHeight);
    Xpos[i] = Math.round(Math.random()*WinWidth);
    Speed[i]= Math.random()*5+1;
    Cstep[i]=0;
    Step[i]=Math.random()*0.1+0.05;
   }
   function fly(){
   var WinHeight=(ns||ns6)?window.innerHeight:window.document.body.clientHeight;
   var WinWidth=(ns||ns6)?window.innerWidth-70:window.document.body.clientWidth;
   var hscrll=(ns||ns6)?window.pageYOffset:document.body.scrollTop;
   var wscrll=(ns||ns6)?window.pageXOffset:document.body.scrollLeft;
for (i=0; i < Amount; i++){
   sy = Speed[i]*Math.sin(Cstep[i]);
   sx = Speed[i]*2;
   Ypos[i]+=sy;
   Xpos[i]+=sx;
   if (Xpos[i] > WinWidth){
   Ypos[i]=Math.round(Math.random()*WinHeight);
   Xpos[i]=-60;
   Speed[i]=Math.random()*5+1;
   }
if (ns){
   document.layers['sn'+i].left=Xpos[i]+wscrll;
   document.layers['sn'+i].top=Ypos[i];
   }
else if (ns6){
   document.getElementById("si"+i).style.left=Xpos[i]+wscrll;
   document.getElementById("si"+i).style.top=Math.min(WinHeight,Ypos[i]);
   }
else{
   eval("document.all.si"+i).style.left=Xpos[i]+wscrll;
   eval("document.all.si"+i).style.top=Ypos[i];
   }
   Cstep[i]+=Step[i];
   }
   setTimeout('fly()',20);
   }
if (ie||ns||ns6)
   window.onload=fly
   //-->
   </script>
2016.02.09. 17:43, virgonc

kk s zld lufi trash effekt

<script language="JavaScript1.2">
//Flying planes - by John Ely
   //Modified from: Autumn leaves script- by Kurt Grigg ([email protected])
   //Modified by Dynamic Drive for NS6 functionality
   //visit http://www.dynamicdrive.com for this script
//Pre-load your image below!
   //CHANGE 5 to the number of images listed below
   grphcs=new Array(5)
//PRELOAD the involved images (extend or contract variables according to # of images used)
   Image0=new Image();
   Image0.src=grphcs[0]="//jegvirag.gportal.hu/portal/jegvirag/image/gallery/1455034817_00.gif"
   Image1=new Image();
   Image1.src=grphcs[1]="//jegvirag.gportal.hu/portal/jegvirag/image/gallery/1455034819_60.gif"
   Image2=new Image();
   Image2.src=grphcs[2]="//jegvirag.gportal.hu/portal/jegvirag/image/gallery/1455034817_00.gif"
   Image3=new Image();
   Image3.src=grphcs[3]="//jegvirag.gportal.hu/portal/jegvirag/image/gallery/1455034819_60.gif"
   Image4=new Image();
   Image4.src=grphcs[4]="//jegvirag.gportal.hu/portal/jegvirag/image/gallery/1455034817_00.gif"
//SPECIFY number of images to randomly display concurrently from list above. Less the more efficient
   Amount=3;
   Ypos=new Array();
   Xpos=new Array();
   Speed=new Array();
   Step=new Array();
   Cstep=new Array();
   ns=(document.layers)?1:0;
   ns6=(document.getElementById&&!document.all)?1:0;
   ie=document.all
if (ns){
   for (i = 0; i < Amount; i++){
   var P=Math.floor(Math.random()*grphcs.length);
   rndPic=grphcs[P];
   document.write("<LAYER NAME='sn"+i+"' LEFT=0 TOP=0><img src="+rndPic+"></LAYER>");
   }
   }
   else{
   document.write('<div style="position:absolute;top:0px;left:0px"><div style="position:relative">');
   for (i = 0; i < Amount; i++){
   var P=Math.floor(Math.random()*grphcs.length);
   rndPic=grphcs[P];
   document.write('<img id="si'+i+'" src="'+rndPic+'" style="position:absolute;top:0px;left:0px">');
   }
   document.write('</div></div>');
   }
   WinHeight=(ns||ns6)?window.innerHeight-70:window.document.body.clientHeight;
   WinWidth=(ns||ns6)?window.innerWidth:window.document.body.clientWidth;
   for (i=0; i < Amount; i++){                                                             
    Ypos[i] = Math.round(Math.random()*WinHeight);
    Xpos[i] = Math.round(Math.random()*WinWidth);
    Speed[i]= Math.random()*5+1;
    Cstep[i]=0;
    Step[i]=Math.random()*0.1+0.05;
   }
   function fly(){
   var WinHeight=(ns||ns6)?window.innerHeight:window.document.body.clientHeight;
   var WinWidth=(ns||ns6)?window.innerWidth-70:window.document.body.clientWidth;
   var hscrll=(ns||ns6)?window.pageYOffset:document.body.scrollTop;
   var wscrll=(ns||ns6)?window.pageXOffset:document.body.scrollLeft;
for (i=0; i < Amount; i++){
   sy = Speed[i]*Math.sin(Cstep[i]);
   sx = Speed[i]*2;
   Ypos[i]+=sy;
   Xpos[i]+=sx;
   if (Xpos[i] > WinWidth){
   Ypos[i]=Math.round(Math.random()*WinHeight);
   Xpos[i]=-60;
   Speed[i]=Math.random()*5+1;
   }
if (ns){
   document.layers['sn'+i].left=Xpos[i]+wscrll;
   document.layers['sn'+i].top=Ypos[i];
   }
else if (ns6){
   document.getElementById("si"+i).style.left=Xpos[i]+wscrll;
   document.getElementById("si"+i).style.top=Math.min(WinHeight,Ypos[i]);
   }
else{
   eval("document.all.si"+i).style.left=Xpos[i]+wscrll;
   eval("document.all.si"+i).style.top=Ypos[i];
   }
   Cstep[i]+=Step[i];
   }
   setTimeout('fly()',20);
   }
if (ie||ns||ns6)
   window.onload=fly
   //-->
   </script>
2016.02.09. 17:42, virgonc

kk s srga lufi trash effekt

<script language="JavaScript1.2">
//Flying planes - by John Ely
   //Modified from: Autumn leaves script- by Kurt Grigg ([email protected])
   //Modified by Dynamic Drive for NS6 functionality
   //visit http://www.dynamicdrive.com for this script
//Pre-load your image below!
   //CHANGE 5 to the number of images listed below
   grphcs=new Array(5)
//PRELOAD the involved images (extend or contract variables according to # of images used)
   Image0=new Image();
   Image0.src=grphcs[0]="//jegvirag.gportal.hu/portal/jegvirag/image/gallery/1455034817_00.gif"
   Image1=new Image();
   Image1.src=grphcs[1]="//jegvirag.gportal.hu/portal/jegvirag/image/gallery/1455034819_10.gif"
   Image2=new Image();
   Image2.src=grphcs[2]="//jegvirag.gportal.hu/portal/jegvirag/image/gallery/1455034817_00.gif"
   Image3=new Image();
   Image3.src=grphcs[3]="//jegvirag.gportal.hu/portal/jegvirag/image/gallery/1455034819_10.gif"
   Image4=new Image();
   Image4.src=grphcs[4]="//jegvirag.gportal.hu/portal/jegvirag/image/gallery/1455034817_00.gif"
//SPECIFY number of images to randomly display concurrently from list above. Less the more efficient
   Amount=3;
   Ypos=new Array();
   Xpos=new Array();
   Speed=new Array();
   Step=new Array();
   Cstep=new Array();
   ns=(document.layers)?1:0;
   ns6=(document.getElementById&&!document.all)?1:0;
   ie=document.all
if (ns){
   for (i = 0; i < Amount; i++){
   var P=Math.floor(Math.random()*grphcs.length);
   rndPic=grphcs[P];
   document.write("<LAYER NAME='sn"+i+"' LEFT=0 TOP=0><img src="+rndPic+"></LAYER>");
   }
   }
   else{
   document.write('<div style="position:absolute;top:0px;left:0px"><div style="position:relative">');
   for (i = 0; i < Amount; i++){
   var P=Math.floor(Math.random()*grphcs.length);
   rndPic=grphcs[P];
   document.write('<img id="si'+i+'" src="'+rndPic+'" style="position:absolute;top:0px;left:0px">');
   }
   document.write('</div></div>');
   }
   WinHeight=(ns||ns6)?window.innerHeight-70:window.document.body.clientHeight;
   WinWidth=(ns||ns6)?window.innerWidth:window.document.body.clientWidth;
   for (i=0; i < Amount; i++){                                                             
    Ypos[i] = Math.round(Math.random()*WinHeight);
    Xpos[i] = Math.round(Math.random()*WinWidth);
    Speed[i]= Math.random()*5+1;
    Cstep[i]=0;
    Step[i]=Math.random()*0.1+0.05;
   }
   function fly(){
   var WinHeight=(ns||ns6)?window.innerHeight:window.document.body.clientHeight;
   var WinWidth=(ns||ns6)?window.innerWidth-70:window.document.body.clientWidth;
   var hscrll=(ns||ns6)?window.pageYOffset:document.body.scrollTop;
   var wscrll=(ns||ns6)?window.pageXOffset:document.body.scrollLeft;
for (i=0; i < Amount; i++){
   sy = Speed[i]*Math.sin(Cstep[i]);
   sx = Speed[i]*2;
   Ypos[i]+=sy;
   Xpos[i]+=sx;
   if (Xpos[i] > WinWidth){
   Ypos[i]=Math.round(Math.random()*WinHeight);
   Xpos[i]=-60;
   Speed[i]=Math.random()*5+1;
   }
if (ns){
   document.layers['sn'+i].left=Xpos[i]+wscrll;
   document.layers['sn'+i].top=Ypos[i];
   }
else if (ns6){
   document.getElementById("si"+i).style.left=Xpos[i]+wscrll;
   document.getElementById("si"+i).style.top=Math.min(WinHeight,Ypos[i]);
   }
else{
   eval("document.all.si"+i).style.left=Xpos[i]+wscrll;
   eval("document.all.si"+i).style.top=Ypos[i];
   }
   Cstep[i]+=Step[i];
   }
   setTimeout('fly()',20);
   }
if (ie||ns||ns6)
   window.onload=fly
   //-->
   </script>
2016.02.09. 17:41, virgonc
 
Blog(havi)
 
Blog(ves)
ARCHVUM

 

 
Oldal info

Virg

.
www.jegvirag.gportal.hu

Ez az oldal a www.jegvirag.gportal.hu MINTA oldala,az oldalon tesztelem a design-et ,kdokat...

Elrhetsgem: [email protected]

Vendgknyv      Kptr      Blog

 

 
Men
 
Szmll
Induls: 2014-07-11
 
Bejelentkezs
Felhasznlnv:

Jelsz:
SgSg
Regisztrci
Elfelejtettem a jelszt
 
Csskod

 

 
Copyright © 2005-2023 Virg Design /www.jegvirag.gportal.hu/[email protected]

RELIGIO-PORTAL /// NE FÉLJ, CSAK HIGYJ! ///RELIGIO-PORTAL /// NE FÉLJ, CSAK HIGYJ! ///RELIGIO-PORTAL    *****    PREKAMBRIUM //// A TUDÁS BIRODALMA///PREKAMBRIUM.GPORTAL.HU /// PREKAMBRIUM //// A TUDÁS BIRODALMA    *****    Naruto rajongói oldal | Könyv fordítások, fanficek | Nézzetek be és olvasgassatok! | Naruto rajongói oldal | KONOHA.HU    *****    Pont ITT Pont MOST! Pont NEKED! Már fejlesztés alatt is szebbnél szebb képek! Ha gondolod gyere less be!    *****    Itachi Shinden harmadi fejezet!! - ÚJ FEJEZET - Felkerült a könyv harmadik harmada!! Konoha.hu - KATT!! KATT! KATT! KATT    *****    MAGYAR HIMNUSZ GITÁRON    *****    KONOHA.HU | Naruto rajongói oldal! Olvass, tanulj, nézd az animét! 2026-ban is a KONOHA.HU-N | KONOHA.HU | KONOHA.HU | K    *****    RELIGIO-PORTAL /// NE FÉLJ, CSAK HIGYJ! ///RELIGIO-PORTAL /// NE FÉLJ, CSAK HIGYJ! ///RELIGIO-PORTAL    *****    PREKAMBRIUM //// A TUDÁS BIRODALMA///PREKAMBRIUM.GPORTAL.HU /// PREKAMBRIUM //// A TUDÁS BIRODALMA    *****    RELIGIO-PORTAL /// NE FÉLJ, CSAK HIGYJ! ///RELIGIO-PORTAL /// NE FÉLJ, CSAK HIGYJ! ///RELIGIO-PORTAL    *****    Naruto rajongói oldal | konoha.hu | KONOHA.HU | KONOHA.HU | KONOHA.HU | KONOHA.HU | KONOHA.HU | KONOHA.HU | KONOHA.HU |    *****    NSYNC - a fiúbandák korszakának egyik legmeghatározóbb csapata a Bye Bye Bye elõadói - nosztalgiária fel    *****    RELIGIO-PORTAL /// NE FÉLJ, CSAK HIGYJ! ///RELIGIO-PORTAL /// NE FÉLJ, CSAK HIGYJ! ///RELIGIO-PORTAL    *****    PREKAMBRIUM //// A TUDÁS BIRODALMA///PREKAMBRIUM.GPORTAL.HU /// PREKAMBRIUM //// A TUDÁS BIRODALMA    *****    ACOTAR Fanfiction: Velaris, a második otthonom    *****    AGICAKÖNYVTÁRA - KÖNYVEK, KÖNYVEK, ÉS KÖNYVEK - ÁGICAKÖNYVTÁRA    *****    Naruto rajongói oldal | konoha.hu | Boldog újévet kívánunk nektek KONOHÁBÓL!!! | KONOHA.HU | KONOHA.HU | KONOHA.HU |    *****    Debrecen Nagyerd&#245;aljai, 150m2-es alapterület&#251;, egyszintes, 300m2-es telken, sok parkolós üzlethelyiség eladó 06209911123    *****    ACOTAR Fanfiction: Velaris, a második otthonom    *****    LITERATURES SUBPAGE /// VERSEK ÉS TÖRTÉNETEK EGY HELYEN ///LITERATURES.GPORTAL.HU///LITERATURES SUBPAGE