function activateTab() {
	var page_title=document.title;

	preloadImages();
       
	
	if (page_title.indexOf("Smith and Gesteland") != -1) {document.getElementById("tab_main").style.backgroundColor="rgb(128,0,0)";}
	if (page_title.indexOf("About Us") != -1) {document.getElementById("tab_about").style.backgroundColor="rgb(128,0,0)";}
	if (page_title.indexOf("Services") != -1) {document.getElementById("tab_services").style.backgroundColor="rgb(128,0,0)";}
	if (page_title.indexOf("Industries") != -1) {document.getElementById("tab_industries").style.backgroundColor="rgb(128,0,0)";}
	if (page_title.indexOf("Resources") != -1) {document.getElementById("tab_resources").style.backgroundColor="rgb(128,0,0)";}
	if (page_title.indexOf("Careers") != -1) {document.getElementById("tab_careers").style.backgroundColor="rgb(128,0,0)";}
	if (page_title.indexOf("News Room") != -1) {document.getElementById("tab_news").style.backgroundColor="rgb(128,0,0)";}
	if (page_title.indexOf("Contact Us") != -1) {document.getElementById("tab_contact").style.backgroundColor="rgb(128,0,0)";}
         
        
}



function preloadImages() {
	// counter
	var i = 0;

	// create object
	imageObj = new Image();

	// set image list
	images = new Array();
	images[0]="http://sgcpa.com/images/Coffeecup5.png";
	images[1]="http://sgcpa.com/images/bg/bg18.png";
	images[2]="http://sgcpa.com/themes/site_themes/blue_essense/blue_essense_bgl.jpg";
	images[3]="http://sgcpa.com/images/banners/bannerleftpart2.png";
	images[4]="http://sgcpa.com/images/icon2.png";
	images[5]="http://sgcpa.com/images/logo10.png";
	images[6]="http://sgcpa.com/images/sng/TopMenuCorrected.png";
	images[7]="http://sgcpa.com/images/sng/leftMenuImages/menu_homepag.png";
	images[8]="http://sgcpa.com/images/sng/Content1.png";
	images[9]="http://sgcpa.com/images/banners/bannerleftpart.png";
	images[10]="http://sgcpa.com/images/banners/history.png";
	images[11]="http://sgcpa.com/images/banners/office";
	images[12]="http://sgcpa.com/images/banners/Non-Profit.jpg";
	images[13]="http://sgcpa.com/images/banners/Construction.jpg";
	images[14]="http://sgcpa.com/images/banners/vision.jpg";
	images[15]="http://sgcpa.com/images/banners/Upcoming-seminars.jpg";
	images[16]="http://sgcpa.com/images/banners/Technology.jpg";
	images[17]="http://sgcpa.com/images/banners/Real-Estate.jpg";
	images[18]="http://sgcpa.com/images/banners/Privacy-Policy.jpg";
	images[19]="http://sgcpa.com/images/banners/Past-seminars.jpg";
	images[20]="http://sgcpa.com/images/banners/office.jpg";
	images[21]="http://sgcpa.com/images/banners/non-profit.jpg";
	images[22]="http://sgcpa.com/images/banners/Non-Profit-Obz.jpg";
	images[23]="http://sgcpa.com/images/banners/Manufacturing.jpg";
	images[24]="http://sgcpa.com/images/banners/litigation.jpg";
	images[25]="http://sgcpa.com/images/banners/Inside-Family-Biz.jpg";
	images[26]="http://sgcpa.com/images/banners/High-Tech.jpg";
	images[27]="http://sgcpa.com/images/banners/history.jpg";
	images[28]="http://sgcpa.com/images/banners/Connections.jpg";
	images[29]="http://sgcpa.com/images/banners/Connection.jpg";
	images[30]="http://sgcpa.com/images/banners/family-biz.jpg";
	images[31]="http://sgcpa.com/images/banners/Fraud-Prevention.jpg";
	images[32]="http://sgcpa.com/images/banners/fraud-prevention.jpg";
	images[33]="http://sgcpa.com/images/banners/events.jpg";
	images[34]="http://sgcpa.com/images/banners/contractor.jpg";
	images[35]="http://sgcpa.com/images/banners/construction.jpg";
	images[36]="http://sgcpa.com/images/banners/connecting.jpg";
	images[37]="http://sgcpa.com/images/banners/career.jpg";
	images[38]="http://sgcpa.com/images/banners/biz-evaluation.jpg";
	images[39]="http://sgcpa.com/images/banners/audit.jpg";
	images[40]="http://sgcpa.com/images/banners/accounting.jpg";
	images[41]="http://sgcpa.com/images/keys/aKey5.png";
	images[42]="http://sgcpa.com/images/sng/leftMenuImages/menu_about.png";
	images[43]="http://sgcpa.com/images/sng/leftMenuImages/menu_careers.png";
	images[44]="http://sgcpa.com/images/sng/leftMenuImages/menu_contact.png";
	images[45]="http://sgcpa.com/images/sng/leftMenuImages/menu_homepag.png";
	images[46]="http://sgcpa.com/images/sng/leftMenuImages/menu_homepage.jpg";
	images[47]="http://sgcpa.com/images/sng/leftMenuImages/menu_homepage.png";
	images[48]="http://sgcpa.com/images/sng/leftMenuImages/menu_industries.jpg";
	images[49]="http://sgcpa.com/images/sng/leftMenuImages/menu_industries.png";
	images[50]="http://sgcpa.com/images/sng/leftMenuImages/menu_newsroom.png";
	images[51]="http://sgcpa.com/images/sng/leftMenuImages/menu_resources.png";
	images[52]="http://sgcpa.com/images/sng/leftMenuImages/menu_services.png";
	images[53]="http://sgcpa.com/images/uploads/services.jpg";

	// start preloading
	for(i=0; i<=53; i++) {
	  imageObj.src=images[i];
	  // Testing line, to confirm images are loading--- // alert(images[i] + " has been preloaded.");
	}

}




function validateSearchBox() {
	if (validateKeyWords()==false) return false;
}
function validateKeyWords() {

	var validFormData=true;
	var isIE = false;
	var isFF = false;
	if (document.all) {isIE=true;}
	else if (document.getElementById) {isFF=true;}
	
	var fieldValue=document.forms[0].keywords.value;
	///////////////////////////////////////////////////////////
	// Verifying that the search term is 3 characters or longer (and also that it is present)
	///////////////////////////////////////////////////////////
	if (isIE) {search_error_message.innerText="";}
	else if(isFF) {
		document.getElementById('search_error_message').textContent = "";
	}
	if (fieldValue.length <= 2)	{
		if (isFF) {
			document.getElementById('search_error_message').textContent = "Search term must be at least 3 characters.";
		}
		else if (isIE) {
			search_error_message.innerText="Search term must be at least 3 characters.";
		}
		document.forms[0].keywords.focus();
		document.forms[0].keywords.select();
		validFormData=false;
	}
	return validFormData;
}

