﻿// This will call a special style sheet for users of Safari.
var detect = navigator.userAgent.toLowerCase();
if (checkIt('safari')) {
    document.write('<link rel="stylesheet" type="text/css" href="/styles/safari.css" media="screen, print" />');
}
function checkIt(string) {
    var place = detect.indexOf(string) + 1;
    return place;
}
