// random background - jammers

var image = new Array();

// change up the images here
image[0] = 'http://protoparlament.ru/img/random/1.jpg';
image[1] = 'http://protoparlament.ru/img/random/2.jpg';
image[2] = 'http://protoparlament.ru/img/random/3.jpg';
image[3] = 'http://protoparlament.ru/img/random/4.jpg';
image[4] = 'http://protoparlament.ru/img/random/5.jpg';

var index = Math.floor(Math.random() * image.length);
document.write('<style type="text/css"> .rand { background-image: url('+ image[index] +');background-repeat:no-repeat;background-position:left;}</style>');

