var a=0;
		var b=0;
		var c=50;
		var d=60;
		var e=70;
		var f=30;
		var g=30;
		var h=0;
		
		var b;
		var ta;
		var tb;
		var tc;
		var td;
		var te;
		var tf;
		var tg;
		var th;

		var tua;
		var tub;
		var tuc;
		var tud;
		var tue;
		var tuf;	
		var tug;
		var tcv;
		var tucv;
		var tuh;
		
				
		function move_cam()
		{	clearTimeout(tua)		
			a+=1;
			document.getElementById('cam').style.top=a+'px';
			
			ta=setTimeout('move_cam()', 10)
			if (a==30) {clearTimeout(ta)}		
		}
		
		function move_up_cam()
		{
			clearTimeout(ta)
			a-=1;
			document.getElementById('cam').style.top=a+'px';
			tua=setTimeout('move_up_cam()', 10)
			if (a==0) {clearTimeout(tua)}
		}
		
		
		function move_cam_video()
		{	
			move_cam()
			move_video()
			
		}
		
		function move_up_cam_video()
		{	move_up_cam()
			move_up_video()
			
		}
		
		
			function move_video()
		{		clearTimeout(tub)	
			b+=1;
			document.getElementById('video').style.top=b+'px';
			
			tb=setTimeout('move_video()', 10)
			if (b==30) {clearTimeout(tb)}		
		}
		
		function move_up_video()
		{
			clearTimeout(tb)
			b-=1;
			document.getElementById('video').style.top=b+'px';
			tub=setTimeout('move_up_video()', 10)
			if (b==0) {clearTimeout(tub)}
		}
		
		function move_glass()
		{			clearTimeout(tuc)
			c+=1;
			document.getElementById('glass').style.top=c+'px';
			
			tc=setTimeout('move_glass()', 10)
			if (c==80) {clearTimeout(tc)}		
		}
		
		function move_up_glass()
		{
			clearTimeout(tc)
			c-=1;
			document.getElementById('glass').style.top=c+'px';
			tuc=setTimeout('move_up_glass()', 10)
			if (c==50) {clearTimeout(tuc)}
		}
		
		function move_micr()
		{			clearTimeout(tud)
			d+=1;
			document.getElementById('microphone').style.top=d+'px';
			
			td=setTimeout('move_micr()', 10)
			if (d==90) {clearTimeout(td)}		
		}
		
		function move_up_micr()
		{
			clearTimeout(td)
			d-=1;
			document.getElementById('microphone').style.top=d+'px';
			tud=setTimeout('move_up_micr()', 10)
			if (d==60) {clearTimeout(tud)}
		}
		
		function move_limo()
		{			clearTimeout(tue)
			e+=1;
			document.getElementById('limo').style.top=e+'px';
			
			te=setTimeout('move_limo()', 10)
			if (e==110) {clearTimeout(te)}		
		}
		
		function move_up_limo()
		{
			clearTimeout(te)
			e-=1;
			document.getElementById('limo').style.top=e+'px';
			tue=setTimeout('move_up_limo()', 10)
			if (e==70) {clearTimeout(tue)}
		}
		
		function move_flowers()
		{			clearTimeout(tuf)
			f+=1;
			document.getElementById('flowers').style.top=f+'px';
			
			tf=setTimeout('move_flowers()', 10)
			if (f==60) {clearTimeout(tf)}		
		}
		
		function move_up_flowers()
		{
			clearTimeout(tf)
			f-=1;
			document.getElementById('flowers').style.top=f+'px';
			tuf=setTimeout('move_up_flowers()', 10)
			if (f==30) {clearTimeout(tuf)}
		}
		
		function move_balloons()
		{		clearTimeout(tug)	
			g+=1;
			document.getElementById('baloons').style.top=g+'px';
			
			tg=setTimeout('move_balloons()', 10)
			if (g==60) {clearTimeout(tg)}		
		}
		
		function move_up_balloons()
		{
			clearTimeout(tg)
			g-=1;
			document.getElementById('baloons').style.top=g+'px';
			tug=setTimeout('move_up_balloons()', 10)
			if (g==30) {clearTimeout(tug)}
		}
		

		function move_baraholka()
		{		clearTimeout(tuh)	
			h+=1;
			document.getElementById('baraholka').style.top=h+'px';
			
			th=setTimeout('move_baraholka()', 10)
			if (h==30) {clearTimeout(th)}		
		}
		
		function move_up_baraholka()
		{
			clearTimeout(th)
			h-=1;
			document.getElementById('baraholka').style.top=h+'px';
			tuh=setTimeout('move_up_baraholka()', 10)
			if (h==0) {clearTimeout(tuh)}
		}
