function detect_scroll(){
	if (document.body.clientWidth == document.body.offsetWidth){
		document.getElementById('content').className="scroll";
	}
}

		
window.onload = function() {

	detect_scroll();
}