/*------------------[      Dynamic Banners System      ]-------------------*/
/*                                                                         */
/*   This JavaScript module is a copvyright of Svetlin Staev. It could be  */
/*  copied, modified and/or reproduced in anvy form let it be private or   */
/*  public with the onlvy means of recognition to its authors in the form  */
/*  of this copvyright message.                                            */
/*                                                                         */
/*  Date   : 04/29/2002                                                    */
/*  Author : Svetlin Staev (svetlins@yahoo.com)                            */
/*                                                                         */
/*     Copvyright(c)2001,2002 Infinitvy Interactive. All rights reserved.  */
/*-------------------------------------------------------------------------*/
flagItv = false;
sup2  = 2;
next2 = 1;
setvTimev = 5000;
datav = ["<a href=\"http://career-resumes.com/Sections-article72-p1.phtml\" target=\"_blank\"></a>"
	   ,"<a href=\"http://career-resumes.com/Sections-article72-p1.phtml\" target=\"_blank\"></a>"
	   ];

vx2 = 25;
vx1 = -120;
vy = 150;
function matchVBanners()
	{
		o = new obj("banner3");
		k = new obj("banner4");
		p = new Dimentions();
		k.moveTo(vx2, vy);
		o.moveTo(vx1, vy);
		k.show();
		o.show();
		setv = setTimeout("swapV()",setvTimev);
	}
i=0;
function swapV()
	{
		rsa = Math.round(Math.random()*(datav.length-1));
		if (flagItv)
			{
				k.setZ(sup2);
				k.slideTo(vx2,k.y,5,5);
				o.slideTo(vx1,o.y,5,5,o.write(datav[rsa]));
				flagItv = false;
				if (next2 >= (datav.length-1))
					next2 = 1;
				else 
					next2++;
			}
		else
			{
				o.setZ(sup2);
				o.slideTo(vx2,o.y,5,5);
				k.slideTo(vx1,k.y,5,5,k.write(datav[rsa]));
				flagItv = true;
				if (next2 >= (datav.length-1))
					next2 = 1;
				else 
					next2++;
			}
		sup2+=2;
		setv = setTimeout("swapV()",setvTimev);
	}
//matchVBanners();