// JavaScript Document

//320 x 240
if (screen.width <= 320) {
	document.write('<link rel=stylesheet type="text/css" href="styles/mobile_portrait.css">');
	//alert('HANDHELD portrait: '+screen.width+'');
} else if (screen.width <= 480) {
	document.write('<link rel=stylesheet type="text/css" href="styles/mobile_portrait.css">');
	//alert('HANDHELD landscape: '+screen.width+'');
} else {
	document.write('<link rel=stylesheet type="text/css" href="styles/desktop.css">');
	//alert('Desktop: '+screen.width+'');
}


