body {background-image:  url(images/back.jpg); background-repeat:repeat;}

a:link {font-family: Arial; color: #f4b98f; text-decoration: none;}
a:visited {font-family: Arial; color: #f4b98f; text-decoration: none;}
a:hover {font-family: Arial; color: #013c17; text-decoration: none;}
a:active {font-family: Arial; color: #013c17; text-decoration: none;}


a.class {color: black;}


a.dog:link { color: blue; text-decoration: none }
a.dog:active { color: red; text-decoration: none }
a.dog:visited { color: blue; text-decoration: none }
a.dog:hover { color: green; text-decoration: underline }

a.tree:link { color: green; text-decoration: none }
a.tree:active { color: yellow; text-decoration: none }
a.tree:visited { color: red; text-decoration: none }
a.tree:hover { color: orange; text-decoration: underline }


Notice how I have the two sections separated, one listed as dog and the other as tree. That sets up two classes. I can now call on those classes using the CLASS attribute in the anchor tag. Like so:

<a href="zonk.html" class="tree">One Scheme</a>
<a href="zonk.html" class="dog">Another Scheme</a> 
.bodytext {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	color: 808370;
}
.bodytext {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: normal;
	color: #000000;
}
.title1 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
	color: #000000;
}
.telephone {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 24px;
	font-weight: bolder;
	color: #FFFFFF;
}
.title2 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bolder;
	color: #000000;
}

#back{background-image: url(images/mapleridge3_12.jpg); background-repeat:no-repeat;}

