/* Load a supplemental style sheet for tweaks if resolution is low */

if (screen.width <= 800) {
  document.writeln('<link href="/styles/lowres800.css" rel="stylesheet" type="text/css" />');
}
else if (screen.width <= 1024) {
  document.writeln('<link href="/styles/lowres1024.css" rel="stylesheet" type="text/css" />');
}