function init() {

var kuva = document.getElementById("kuva");

if ( document.body.clientWidth > ( kuva.width +175+175 )  )
{

var left = document.getElementById("left");
if ( left ) {

left.style.position = "absolute";
left.style.left = "0px";
left.style.top = "0px";
left.style.width = "175px";

}

var right = document.getElementById("right");

if ( right ) {

right.style.position = "absolute";
right.style.right = "0px";
right.style.top = "0px";
right.style.width = "175px";

}

}


}


