/* list all your banners */
var a_banners12 = [
'
',
'
',
'
',
'
',
'
',
'
',
'
',
'
',
'
',
'
',
'
',
'
',
'
',
'
',
'
',
'
',
'
',
'
',
'
',
'
',
'
',
'
',
'
',
'
',
'
',
'
'
];
/* this function generates items array for the scroller. banners arranged in random order */
function random_ads12 (a_banners) {
var n_index, a_items = [];
while (a_banners.length) {
n_index = Math.ceil(Math.random() * a_banners.length) - 1;
a_items[a_items.length] = {'content': a_banners[n_index],'pause_b':2};
a_banners[n_index] = a_banners[a_banners.length - 1];
a_banners.length = a_banners.length - 1;
}
return a_items;
}
var Tscr_LOOK12 = {
// scroller box size: [width, height]
'size' : [158, 365],
'distance': 0
},
Tscr_BEHAVE12 = {
// if scrolling mode is auto (true / false);
'auto' : true,
// if scrolling direction is vertical (true / false, false means horisontal)
'vertical' : true,
// scrolling speed, pixels per interval;
// for auto mode use negative value for speed key to reverse scrolling direction
'speed' : 1,
'interval': 50,
// buttons visible on mouse over - true, always visible - false
'hide_buttons' : false,
'zindex': 5
},
// a data to build scroll window content
Tscr_ITEMS12 = random_ads12 (a_banners12);