
// Browser size check to specify which style sheet to use

if (screen.width > 800)
{
	document.write('<link href="09_styles.css" type="text/css" rel="stylesheet">');
}
else
{
	document.write('<link href="09_800_styles.css" type="text/css" rel="stylesheet">');
}

