totwidth=390;
mwidth=34; mleft=13;
i=0;bb={};
vspeed=5;aa={};aa.one=0;aa.two=0;
function sh1(vw,vd,vint){
	if (vw=='s'){
		if (aa[vd] >= totwidth) {
			clearInterval(bb[vd]); 
			return ;
		} 
		document.getElementById(vd).style.width = (mwidth+aa[vd]) + "px" ;
		document.getElementById(vd).style.marginLeft = (mleft-aa[vd]) + "px" ;
		aa[vd]+=vspeed;
	} else if (vw=='h') {
		if (aa[vd] <= 0) {
			clearInterval(bb[vd]); 
			return ;
		} 
		document.getElementById(vd).style.width = (mwidth+aa[vd]-vspeed) + "px" ;
		document.getElementById(vd).style.marginLeft = (mleft-aa[vd]+vspeed) + "px" ;
		aa[vd]-=vspeed;
	}

}

