	window.addEvent('domready',function(){
        if($('rss1')!=null) makeScrollbar( $('rss1'), $('scrollbar1'), $('handle1'));
        if($('rss2')!=null) makeScrollbar( $('rss2'), $('scrollbar2'), $('handle2'));
	}
	);


if(document.all) window.attachEvent('onload',SZ);  else window.addEventListener('load',SZ,false);
if(document.all) window.attachEvent('onresize',SZ);  else window.addEventListener('resize',SZ,false);

function SZ(){
    SizeFotoVideo('foto'); 
    SizeFotoVideo('videoA'); 
    SizeFotoVideo('videoB'); 
}


function SizeFotoVideo(name){
    if($get(name+'_lst')==null) return;
    var width=$get(name+'_lst').clientWidth; 
    var cnt=4;
    if(width>440) cnt=width/110;
    //window.status='COUNT='+cnt;
    for(i=5;i<8; i++) 
    if($get(name+'_'+i)!=null){
        if(i<=cnt) $get(name+'_'+i).style.display='inline-block';  else $get(name+'_'+i).style.display='none';
    }
}

