function doscroll(){

if(window.screen.height  >= 768){

if (document.body.scrollTop<=90){
document.getElementById('menu_1').style.marginTop=0;
document.getElementById('menu_2').style.marginTop=0;
}

else{
document.getElementById('menu_1').style.marginTop=document.body.scrollTop-90;
document.getElementById('menu_2').style.marginTop=document.body.scrollTop-90;
}

}

}


