/*
var stylesheet = '';
if ( screen.width < 480 ) {
  stylesheet = '320.css';
}
else if ( screen.width < 640 ) {
  stylesheet = '480.css';
}
else if ( screen.width < 800 ) {
  stylesheet = '640.css';
}
else if ( screen.width < 1024 ) {
  stylesheet = '800.css';
}
if ( stylesheet != '' ) {
  document.writeln('<style type="text/css" media="screen">');
  document.writeln('<!--');
  document.writeln('	@import url(/css/' + stylesheet + ');');
  document.writeln('-->');
  document.writeln('</style>');
  if ( stylesheet == '800.css' ) {
   document.writeln('<!--[if gte IE 6]><style type="text/css" media="screen">');
   document.writeln('	@import url(/css/ie800.css);');
   document.writeln('</style><![endif]-->');
  }
}
*/

