// Menu item moving ON
var obj;
var i=0;

function moveElement(obj){
/*obj.style.left=i+"px";
i++;
a=setTimeout(function(){moveElement(obj)},30);
a;
if(i==20){
backElement(obj)
}*/
}

function backElement(obj){
/*clearTimeout(a)
obj.style.left=0+"px"
i=0;
*/
}
