﻿// JavaScript Document
function sniffBrowser() {
if (document.getElementById && document.createElement){
}
else if (navigator.appName == 'Netscape' && navigator.appVersion <= '6.0'){
alert('To view this Web site, please \n enable JavaScript in your browser \n or upgrade your browser');
}
else {
alert('To view this gallery, please \n enable JavaScript in your browser \n or upgrade your browser');
}
}


function returnCSS(cssid) {
document.getElementById(cssid).style.backgroundColor = "#8A0000";
}
function clearCSS(cssid) {
document.getElementById('location').style.backgroundColor = "#8A0000";
document.getElementById('menu').style.backgroundColor = "#8A0000";
document.getElementById('aboutus').style.backgroundColor = "#8A0000";
document.getElementById('careers').style.backgroundColor = "#8A0000";
document.getElementById('franchise').style.backgroundColor = "#8A0000";
document.getElementById('giftcards').style.backgroundColor = "#8A0000";
document.getElementById(cssid).style.backgroundColor = "#330000";
}