function menu_movein(opcja1,opcja2){

	var moveplus= document.getElementById(opcja1);
	var moveminus= document.getElementById(opcja2);

	for(l=0;l<8;l++){
	var time=l*20;
	setTimeout(function(){menu_slidein(opcja1,opcja2);},time);
	}
}

function menu_moveout(opcja1,opcja2){

	var moveplus= document.getElementById(opcja1);
	var moveminus= document.getElementById(opcja2);

	for(k=0;k<8;k++){
	var time=k*20;
	setTimeout(function(){menu_slideout(opcja1,opcja2);},time);
	}

}



function menu_slidein(opcja1,opcja2){


	var moveplus= document.getElementById(opcja1);

	moveplus.style.width = parseInt(moveplus.style.width) + 1 + "px";



}

function menu_slideout(opcja1,opcja2){


	var moveplus= document.getElementById(opcja1);

	moveplus.style.width = parseInt(moveplus.style.width) - 1 + "px";



}
