// JavaScript Document

/* Resolution Sniffer / Dynamic CSS Loader - HD |
via Arley McBlain http://debutcreative.com */

/* Common Computer Screens: 640,800,1024,1152,1280,1440,1600,and HD 1920 */

// File path to background images folder
var bgFolder = 'http://digitalgeneration.be/annelien/images/';

if (screen.width>=1920){
 document['body'].style.backgroundImage='url('+bgFolder+'bg1920.jpg)';
 document['body'].style.backgroundRepeat='repeat-x';
}
else if (screen.width>=1600){
 document['body'].style.background='url('+bgFolder+'bg1600.jpg)';
 document['body'].style.backgroundRepeat='repeat-x';
}
else if (screen.width>=1440){
 document['body'].style.background='url('+bgFolder+'bg1440.jpg)';
 document['body'].style.backgroundRepeat='repeat-x';
}
else if (screen.width>=1280){
 document['body'].style.background='url('+bgFolder+'bg1280.jpg)';
 document['body'].style.backgroundRepeat='repeat-x';
}
else if (screen.width>=1152){
 document['body'].style.background='url('+bgFolder+'bg1280.jpg)';
 document['body'].style.backgroundRepeat='repeat-x';
}
else if (screen.width>=1024){
 document['body'].style.background='url('+bgFolder+'bg1280.jpg)';
 document['body'].style.backgroundRepeat='repeat-x';
}
else if (screen.width>=800){
 document['body'].style.background='url('+bgFolder+'bg1280.jpg)';
 document['body'].style.backgroundRepeat='repeat-x';
} 
else {
 document['body'].style.backgroundImage='url('+bgFolder+'bg1280.jpg)';
 document['body'].style.backgroundRepeat='repeat-x';
}

