var detect = navigator.userAgent.toLowerCase();
var OS,brwsr,version,total,thestring;
if (checkIt('konqueror')){brwsr = "Konqueror"; OS = "Linux"; }
else if (checkIt('safari')) brwsr = "Safari";
else if (checkIt('omniweb')) brwsr = "OmniWeb"; 
else if (checkIt('opera')) brwsr = "Opera"; 
else if (checkIt('webtv')) brwsr = "WebTV";
else if (checkIt('icab')) brwsr = "iCab";
else if (checkIt('msie')) brwsr = "Internet Explorer";
else if (!checkIt('compatible')){brwsr = "Netscape Navigator"; version = detect.charAt(8);}else brwsr = "An unknown brwsr";
if (!version) version = detect.charAt(place + thestring.length);
if (!OS){ if (checkIt('linux')) OS = "Linux"; 
else if (checkIt('x11')) OS = "Unix"; 
else if (checkIt('mac')) OS = "Mac"; 
else if (checkIt('win')) OS = "Windows";	
else OS = "an unknown operating system";}  
function checkIt(string) { 	place = detect.indexOf(string) + 1; thestring = string; 	
return place; }  document.write("<style> body{background-image: url(http://campus-school.edgewood.edu/images/pagebg4.jpg);background-repeat: repeat-x;");
if (brwsr == "Internet Explorer") {document.write("margin-left: 15px;"); 
if (OS == "Mac") { document.write("margin-top: 10px;")} 
else {document.write("margin-top: 10px;")} } 
else {document.write("margin-left: 8px; margin-top: 10px;")};document.write("}</style>"); 