// JavaScript Document
var myAdH = 0;
var theTimer,theTimer1,theTimer2;
function showindexadv(){
	if(myAdH<140){
		document.getElementById("myAd").style.height = myAdH+"px";
		myAdH += 3;
		theTimer1=setTimeout("showindexadv()",10);
	}else{setshowtime();}
}
function hideindexadv(){
	if(myAdH>0){
		myAdH -= 3;
		document.getElementById("myAd").style.height = myAdH+"px";
		theTimer2=setTimeout("hideindexadv()",10);
	}
}
function setshowtime(){
	theTimer=setTimeout("hideindexadv()", 5000);
}
showindexadv();