// JavaScript Document
<!--
if (location.href.indexOf('corporate') > -1){
	with(document) {
 		write("<style type='text/css'>");
  		write("li#buttonCorporate a {");
		write("background-position: 0 -35px;");
  		write("}");
		write("</style>");
  	}
} else if (location.href.indexOf('communities') > -1){
	with(document) {
 		write("<style type='text/css'>");
  		write("li#buttonCommunities a {");
		write("background-position: 0 -35px;");
  		write("}");
		write("</style>");
  	}
} else if (location.href.indexOf('news') > -1){
	with(document) {
 		write("<style type='text/css'>");
  		write("li#buttonNews a {");
		write("background-position: 0 -35px;");
  		write("}");
		write("</style>");
  	}
} else if (location.href.indexOf('customer') > -1){
	with(document) {
 		write("<style type='text/css'>");
  		write("li#buttonCustomer a {");
		write("background-position: 0 -35px;");
  		write("}");
		write("</style>");
  	}
} else if (location.href.indexOf('property') > -1){
	with(document) {
 		write("<style type='text/css'>");
  		write("li#buttonProperty a {");
		write("background-position: 0 -35px;");
  		write("}");
		write("</style>");
  	}
} else if (location.href.indexOf('upcoming') > -1){
	with(document) {
 		write("<style type='text/css'>");
  		write("li#buttonUpcoming a {");
		write("background-position: 0 -35px;");
  		write("}");
		write("</style>");
  	}
} else if (location.href.indexOf('contact') > -1){
	with(document) {
 		write("<style type='text/css'>");
  		write("li#buttonContact a {");
		write("background-position: 0 -35px;");
  		write("}");
		write("</style>");
  	}
}
-->