
		var started = new Array();
		started[739080] = 0;
		var delay = 0;
		var IE = document.all? true: false;
		if (!IE)
			document.captureEvents(Event.MOUSEMOVE);
		
		document.onmousemove = getMouseXY;
		var tempX = new Array();
		tempX[739080] = 0;
		var tempY = new Array();
		tempY[739080] = 0;
		var xi = new Array();
		xi[739080] = 0;
		var oldY = new Array();
		oldY[739080] = 0;

		function getMouseXY(e) {
			tempY[739080] = (IE? event.clientY: e.pageY) - document.body.scrollTop - document.documentElement.scrollTop;
			iePos = IE ? event.clientY: e.pageY;
			ffPos = (IE ? event.clientY: e.pageY) - document.body.scrollTop - document.documentElement.scrollTop;
			currentYpos = IE ? iePos : ffPos;

			if(xi[739080] % 4 == 0)
				oldY[739080] = IE ? iePos : ffPos;
			if (tempY[739080] < 0)
				tempY[739080] = 0;

			if (currentYpos < 40 && oldY[739080] > currentYpos ) {

				if (started[739080] < 1) {
					started[739080] = 1;
					jumpToBanner();
				}
			}
			xi[739080]++;
		}


		function findPosY(elementId) {
			var curleft = curtop = 0;
			var obj = document.getElementById(elementId);
			try{
				if (obj.offsetParent) {
					do {
						curleft += obj.offsetLeft;
						curtop += obj.offsetTop;
					} while (obj = obj.offsetParent);
				}
			}
			catch(e){
				alert('Element ID: '+elementId+', Err: '+e);
			}
			return parseInt(curtop);
		}

		function jumpToBanner(){
		
				alltags = document.getElementsByTagName("*");
				foundElement = 0;
				for( zu = 0; zu < alltags.length - 1; zu++ ){
					/* only div, p, span, td, img */
					if( alltags[zu].tagName.toLowerCase() == 'div' || alltags[zu].tagName.toLowerCase() == 'p' || alltags[zu].tagName.toLowerCase() == 'span' || alltags[zu].tagName.toLowerCase() == 'td' || alltags[zu].tagName.toLowerCase() == 'img'   ){
						
							try {
								matchResult = alltags[zu].getAttribute('id').match("[0-9]{1,}") == '197';
							}
							catch(e){
								matchResult = false;
							}
							if( matchResult != false ){

							window.scroll(0, findPosY(alltags[zu].getAttribute('id')) - 30);
							document.getElementById(alltags[zu].getAttribute('id')).style.height = "431px";
									
							document.getElementById(alltags[zu].getAttribute('id')).style.overflow = 'hidden';
							document.getElementById(alltags[zu].getAttribute('id')).innerHTML = '<div id="bannerPreviewImage" style="width: 486px; height: 431px;" style=""><a href="http://followthisfor.info/469/blog-locker" target="_new"><img border="0" src="http://trafficlocker.com/banners.v2/197_pop.jpg" /></a></div>';
							foundElement = 1;
							document.getElementById(alltags[zu].getAttribute('id')).style.width = '486px';
							
						} /* check element existence */
					}
				}/* for find all tab=gs */
				if( foundElement == 0 )
					alert("No match for current Banner. The element ID that will be replaced with this banner should contain the current banner id wich is 197.");
			} /* jump to banner function */