	function roll_arrow(wd){
		var arrow = document.getElementById('menu_arrow');
		var div = document.getElementById('yumroo_menu');
		if(wd == 1){
			arrow.src = "http://canli.az/wp-content/themes/general/images/arrow_bottom2.png";
		}
		else {
			if (div.style.display == 'none'){
				arrow.src = "http://canli.az/wp-content/themes/general/images/arrow_bottom.png";
			}
			else {
				arrow.src = "http://canli.az/wp-content/themes/general/images/arrow_bottom2.png";
			}
		}
	}

	function show_menu(div_id){
		var div = document.getElementById(div_id);
		
		// get menu arrow image
		var arrow = document.getElementById('menu_arrow');
	
		var divm = document.getElementById('more');
		//var x = absPosition(divm).x;
		//var x = absPosition(divm).x;
		var x = screen.width;
		var y = screen.height;
		//	div.style.top = x;
		//	div.style.left = y;
			
		if (div.style.display == 'none'){
			div.style.display = 'block';
			arrow.src = "http://canli.az/wp-content/themes/general/images/arrow_bottom2.png";
		}
		else{
			div.style.display = 'none';
			arrow.src = "http://canli.az/wp-content/themes/general/images/arrow_bottom.png";
		}
	
	}

