var width=screen.width;
var classname='min';
if (width>1024)
	classname='default';
if (width>1280)
	classname='max';
document.body.className='background-'+classname;
//bd=document.getElementsByTagName('BODY');
//bd[0].className='background-'+classname;
