var cnt = 12; var imgsize = 136; var min = cnt*imgsize; var x=0; var id_time_out; function start_next(){ var str = document.getElementById('scrl').style.right; var str2 = str.substring(0, str.indexOf('px')); if(str2<(min-700)+60){ x=x+5; document.getElementById('scrl').style.right=x+'px'; id_time_out = setTimeout('start_next()', '50'); } } function stop_next(){ clearTimeout(id_time_out); } function start_prev(){ if(x!=0){ x=x-5; document.getElementById('scrl').style.right=x+'px'; id_time_out = setTimeout('start_prev()', '50'); } } function stop_prev(){ clearTimeout(id_time_out); } function resizeW(){ document.getElementById('scroll-content').style.left=(((window.innerWidth?window.innerWidth:document.body.offsetWidth)-700)/2)+'px'; document.getElementById('scroll-content-arrow-left').style.left=(((window.innerWidth?window.innerWidth:document.body.offsetWidth)-820)/2)+'px'; document.getElementById('scroll-content-arrow-right').style.right=(((window.innerWidth?window.innerWidth:document.body.offsetWidth)-820)/2)+'px'; }