<?PHP
define('IN_SITE', true);

include ("include/connect.php");
include ("include/func.php");

session_start();

// User submitted Login Form
if ($_POST) {

	$error = "";

	### Validate user
	if(	$_POST["username"] == "" )
		$error[] = "Please enter your Username";
	else
		$username = addslashes($_POST["username"]);

	if(	$_POST["password"] == "" )
		$error[] = "Please enter your Password";
	else
		$password = $_POST["password"];

	### No errors.  Attempt login.
	if($error == "") {

		// Retrieve Account Info
		$sql = "SELECT `user_id`, `user_password`, `user_regdate`, `user_level` FROM `users` WHERE `username` = '$username'";
			$result = mysql_query($sql);

		if($myrow = mysql_fetch_array($result)) {

			$userInfo = $myrow["user_password"];

			### Hash password with registration date as salt
			$loginInfo = sha1($password.$myrow["user_regdate"]);

			if($userInfo == $loginInfo) { // LOGIN SUCCESS

				$success = TRUE;

				// SET SESSIONS FOR LOGGED USER
				$_SESSION['username'] = $username;
				$_SESSION['userid'] = $myrow["user_id"];
				$_SESSION['userlevel'] = $myrow["user_level"];
				$_SESSION['ip'] = $_SERVER['REMOTE_ADDR'];

				$userid = $_SESSION['userid'];
				$userlevel = $_SESSION['userlevel'];

				// UPDATE LAST VISIT FOR USER
				$user_id = $myrow["user_id"];
				$lastvisit = date("Y-m-d H:i:s");

				$sql = "UPDATE `users` SET `user_lastvisit` = '$lastvisit' WHERE `user_id` = '$user_id'";
				$resultUpdate = mysql_query($sql);


			} else { // LOGIN FAILED: incorrect password

				$error[] = "Incorrect Password.";

			}

		} else { // LOGIN FAILED: login does not exist.

			$error[] = "Username does not exist.";

		}

	} // END ATTEMPT LOGIN

} // END USER SUBMITTED LOGIN

/*
#################################################
##### Implement once my-account page is made#####
#################################################

// If user is logged, redirect
$newip = $_SERVER['REMOTE_ADDR'];
if($_SESSION["username"] && ($newip == $_SESSION['ip'])) {
	header ("Location: http://www.chinohills.com/my-account/");
}
*/

$newip = $_SERVER['REMOTE_ADDR'];
if($_SESSION["username"] && ($newip == $_SESSION['ip'])) {
	$username = $_SESSION["username"];
	$userid = $_SESSION["userid"];
	$userlevel = $_SESSION["userlevel"];
}

?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<META NAME="Description" CONTENT="News Articles, Searchable Business Directory, and Information about the city of Chino Hills, CA. Official Member of Associated Geos">

<meta name="robots" content="ALL,INDEX,FOLLOW">
<meta name="author" content="ChinoHills.com">

<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Chino Hills Community Website, News Articles, Business Directory Listings, Official Associated Cities Member Website</title>
<link href="http://www.chinohills.com/include/style.css" rel="stylesheet" type="text/css" />

<script language="JavaScript" type="text/javascript" src="include/ufo.js"></script>
<style type="text/css">
<!--
.style1 {color: #FF0000}
.style2 {color: #009900}
-->
</style>
</head>

<body>



<table cellspacing="0" cellpadding="0" align="center">
<tr><td>

<?PHP $page = "home"; ?>
<?PHP include("overall_header.php"); ?>

<br />

</td></tr>
<tr><td>

<div id="content" style="width:665px; float:left;">

<h2 class="style1"><span class="style2 style2">Of, By, and For the People of Chino Hills (and Chino)!</span></h2>

<table border="0" cellspacing="0" cellpadding="0">
    <tr>
      <td valign="top" style="border: 1px #CCCCCC solid;" ><!-- <a href="http://www.chinohills.com/news-articles-details/Chino_Hills_Residents_Rally_Against_Edisons_Proposed_Electrical_Towers-596"><img src="images/imagebar/powerlinerally.jpg" /> --> </a>        
	<span id="player" align="center"><a href="http://www.macromedia.com/go/getflashplayer">Get the Flash Player</a> to see this Chino Hills photo gallery.</span>
	<script type="text/javascript">
		var FO = { 	movie:"http://www.chinohills.com/include/imagerotator.swf",width:"665",height:"200",majorversion:"7",build:"0",bgcolor:"#EEEEEE", flashvars:"file=http://www.chinohills.com/include/imagerotator.xml&shownavigation=true&linkfromdisplay=true&transition=lines&shuffle=true&transition=random&rotatetime=4" };
		UFO.create(FO, "player");</script>    </td>
    </tr>
  </table>

<div align="center"><a href="http://www.chinohills.com/weather.php"><strong>Get the Weather!</strong></a><br />
</div>
<div style="width:665px;">
 <h2>
   <div style="float: right;"><a href="http://www.chinohills.com/news-articles">More News / Articles &gt;&gt;</a></div>
 Featured Chino Hills News</h2>
<table width="100%" border="0" cellspacing="0" cellpadding="5">
<tr>
<?PHP
############################
### DISPLAY SIDE CONTENT ###
############################
	$sql = "SELECT articles.*, images.image_name, categories.category as catname, users.user_firstname, users.user_lastname FROM  `news_articles` as articles, `news_images` as images, `news_categories` as categories, `users` WHERE articles.category = categories.id AND images.article_id = articles.id AND images.is_default = '1' AND articles.author = users.user_id AND articles.status = 'publish' AND articles.id IN ('1211','1203','1210','1204') ORDER BY articles.date DESC";
	$result = mysql_query($sql);
	$numrows = mysql_num_rows($result);
	$count = 0;
	$categoryDesc = "";
	$categoryName = "";


	// populate Navigation for Directory items
	if($myrow = mysql_fetch_array($result)) {


		do {

			$articleId = $myrow[id];
			$articleCategory = $myrow[catname];
			$articleTitle = $myrow[title];

			$detailLink = str_replace("'", "", $articleTitle);
			$detailLink = ereg_replace("[^a-zA-Z0-9]", "_", $detailLink);
			$detailLink = ereg_replace("[_]{2,}", "_", $detailLink);
			$detailLink .= "-$myrow[id]";

			$articleSubtitle = substr($myrow[subtitle], 0, 75)." <a href=\"http://www.chinohills.com/news-articles-details/".$detailLink."\"><em>>></em></a>";

			$image_name = $myrow[image_name];
			$thumb = "<a href=\"http://www.chinohills.com/news-articles-details/$detailLink\">
				<img src=\"http://www.chinohills.com/image?filename=images/articles/$articleId/med/$image_name&width=115\" align=\"left\" alt=\"$articleTitle\" >
				</a>";

			$articleContent = stripslashes($myrow[content]);
			$articleBrief =  substr($articleContent, 0, 200)." <a href=\"http://www.chinohills.com/news-articles-details/".$detailLink."\"><em>>></em></a>"; // truncate article to 200 chars
			$articleByline = "By $myrow[user_firstname] $myrow[user_lastname]";
			$articleDate = $myrow[date];

			$articleDate = strftime("%B %e, %Y", strtotime($articleDate));


				### PRINT ARTICLE
				##########################
				$counttemp = $count%2;
				if(($count+1)%2) echo "<tr>";
				echo <<<ARTICLE
				<td width="33%" style="border-left: 1px solid #DDDDDD; border-bottom: 1px solid #DDDDDD;" valign="top">
					$thumb
				<div class=small>
					<div id="articleTitleMed"><a href="http://www.chinohills.com/news-articles-details/$detailLink">$articleTitle</a></div>
					<div id="articleBody">$articleSubtitle</div>
				</div>
				</td>
ARTICLE;

			$count++;
			if(($count+1)%2) echo "</tr>";

		} while($myrow = mysql_fetch_array($result));

	}
?>
</tr></table>
</div>
<table width="596" border="0" cellspacing="1" cellpadding="1">

  <tr>
    <td nowrap="nowrap"><ul>
      <li><a href="http://www.chinohills.com/chino-hills-schools.php"><strong>Academic  Performance Reports &amp;...</strong></a></li>
      <li><a href="http://www.ChinoHills.com/chino-hills-schools.php"><strong>Quick Links to School District Info.</strong></a> </li>
      <li><a href="chino-hills-city-links.php"><strong>Quick Links to Chino Hills City Info.</strong></a></li>
      <li><a href="http://www.chinohills.com/news-articles-details/California_Senator_Margett_Not_Committed_to_C_A_R_E_yet-82"></a> <a href="http://www.chinohills.com/news-articles/Real_Estate-13">Chino Hills  Real Estate </a></li>
      <li><a href="http://www.chinohills.com/news-articles-details/Whats_happening_in_Chino_Hills_and_the_Surrounding_Areas_-46"></a> <a href="http://www.chinohills.com/news-articles-details/Chino_Valley_Chamber_of_Commerce_Calendar-48">Chamber of Commerce - Upcoming Events</a></li>
      <li><a href="http://www.cafepress.com/chinohills" target="_blank"><strong>ChinoHills.com Online Store</strong></a> </li>
      <li><a href="http://www.chinohills.com/gmaps">Map it out - See Your Home Online</a> </li>
      <li><a href="http://www.ticketsnow2.com/t.asp?id=15320&p=sports_tickets.html" target="_blank">Sporting Events Tickets in Southern CA</a></li>
    </ul>    </td>
    <td nowrap="nowrap"><ul>
      <li><a href="http://www.chinohills.com/news-articles-details/Chino_Valley_Chamber_of_Commerce_Calendar-48"></a><a href="http://www.chinohills.com/news-articles-details/Whats_happening_in_Chino_Hills_and_the_Surrounding_Areas_-46">Chino Hills &amp; Chino - Upcoming Events</a></li>
      <li><a href="chino-hills-movies.php"><strong>Local Movie Guide</strong></a> </li>
      <li><a href="http://www.chinohills.com/business-directory/Restaurants-887/">Chino Hills Restaurants</a></li>
      <li><a href="http://www.chinohills.com/news-articles-details/California_Senator_Margett_Not_Committed_to_C_A_R_E_yet-82">Say No To Power Lines Information</a></li>
      <li><a href="http://www.chinohills.com/electionresults.php" target="_blank"><strong>Voters Get Your Election Results Here</strong></a> </li>
      <li><a href="http://www.chinohills.com/voting-and-school-districts.php">What &quot;District' Are You In?</a> </li>
      <li><a href="http://www.chinohills.com/chino-hills-comprehensive-link-list.php">Local Web Sites - Comprehensive List</a></li>
      </ul>     </td>
  </tr>
</table>

<div>
  <h2>Search for Business Listings</h2><a name="christmasshoppes" id="christmasshoppes"></a>

<form name="searchDirectory" id="searchDirectory" method="get" action="http://www.chinohills.com/business-directory-search">

<table id="formtable" width="100%" cellspacing="1">
  <tr>
	<td align="right" valign="top" nowrap="nowrap">Search by Business Name</td>
	<td><input name="searchName" type="text" id="searchName" value="<?PHP echo $businessName; ?>" size="45" maxlength="100"/></td>
    </tr>
<!--//
  <tr>
	<td align="right" valign="top" nowrap="nowrap">Keyword(s)<br />
    	<span class="small">* Searches Description & Category</span>
    </td>
	<td valign="top"><input name="searchKeywords" type="text" id="searchKeywords" value="<?PHP echo $businessName; ?>" size="45" maxlength="100"/></td>
  </tr>
  <tr>
	<td align="right" valign="top">City</td>
	<td><select name="zip" id="zip">
	  <option value="all" selected>Chino Hills & Chino</option>
	  <option value="chinohills">Chino Hills only</option>
	  <option value="chino">Chino only</option>
	  </select>	</td>
  </tr>
//-->
  
  <tr>
    <td height="50" align="center" valign="middle" colspan="2"><input type="submit" name="submit" id="submit" value="Search" />
      <a name="coupons" id="coupons"></a> </td>
  </tr>
</table>
</form>
</div>

<!--<h3>Check Out This Wonderful Christmas Photo Montage of the Shoppes by Photographer Vanessa Preziose</h3>
<div>
<IFRAME name="the_shoppes" src="http://www.vpphotography.com/SACH_112208/" height="700" width="100%"></IFRAME>
</div> -->

<h3>&nbsp;</h3>
<table width="100%" border="0" align="center" cellpadding="5" cellspacing="5">
  <tr>
    <td>

  <h3><strong><span class="style1">Save Money</span> at ChinoHills.com - <span class="style1">Online Coupons</span></strong></h3>
      <p><a href="coupons/index.php"><img src="_images/save.jpg" width="100" height="105" border="0" align="left" /></a> Save money on food, products, and services near home. Subscribe to our Money Saving Thrift Alerts. Examples: <a href="http://www.chinohills.com/coupons/index2.php#postalannex"><strong>15% off Fed-ex</strong></a> and UPS shipments at <em>Postal Annex</em>,<a href="http://www.chinohills.com/coupons/index4.php#tropicalsmoothie"><strong> A Free Smoothie or Sandwich</strong></a> at <em>The Tropical Smoothie Cafe</em>, and even savings on <a href="http://www.chinohills.com/coupons/index2.php#chancellorplace"><strong>Assisted Living</strong></a> at <em>Chancellor Place</em> and <a href="http://www.chinohills.com/coupons/">more</a>. </p>
</td>
  </tr>
</table>

<h3><strong>About Chino Hills - A Personal Perspective</strong></h3>
<p>Chino Hills is a group of communities nestled in the beautiful hills that carry the same name.  It’s a town with a <img src="_images/ft-chino-hills-nghbrhd2.jpg" width="296" height="201" align="left" />lot of history. It’s a town where people and the government work together to solve problems and improve the standard of living.  It’s a community, where people know and care about each other.  
<p>When I brought my wife and two sons from Chicago to live Southern California in 1986, one of my goals was to find a place where I could raise my kids and give them roots.  The same kind of roots I still value today from my childhood.  I loved growing up in a town where I knew people and people knew me and where I could still go back after 40 years and say hi to old friends.  I found that place in Chino Hills. </p>
<p><strong>Government </strong></p>
<p>We bought our home here in 1989, before the town became officially incorporated.  It was still known as Chino Hills and had an estimated population of 15,000 to 20,000 people at that time.  Since incorporating in 1991, it has grown to approximately 82,000 in population.  We kind of grew up with the city.  I still remember when Ed Graham, the father of one of my son’s friends, knocked on our door and asked for our support as he was to run for the city’s first city council.  Ed still serves on the council today.  Ed is typical of the type of government leader that we have here.  We have a town where the government is approachable and where they listen to the community.  Ed and Councilmember Gwynn Norton-Perry are original members from that first sitting council in 1991.  They serve today with Mayor Peter Rogers and Councilmembers Bill Kruger and Art Bennett.  Chino Hills rotates the duty of Mayor amongst the five City Council Members each year to spread out the work and responsibility and to save the city money.</p>
<p>The government in Chino Hills operated out of Spartan headquarters located near Grand Avenue and Chino Hills Parkway for over 15 years, but this year, has moved to a modern facility built on Peyton Avenue, south of Grand Avenue, near the new Shoppes at Chino Hills.  The city employs about 190 people, most of who work in administrative, planning, finance, recreation, and public works.  Chino Hills contracts with the San Bernardino Sheriff’s Department for Police services and with the Chino Valley Independent Fire District for emergency services.  The city is also served by the Chino Valley Unified School District (CVUSD).</p>
<p><strong>Surroundings</strong></p>
<p>The city is often referred to as &quot;The Best Kept Secret in the Inland Empire&quot; and for good reason.  Honestly, I always thought that was my own saying until I saw it referred to that way in a newspaper article.  Although it has grown tremendously, it is surrounded by nature.  On the western and southern borders is the Chino Hills State Park, consisting of 13,000 acres, 31 miles long, and full of hills, valleys, and wildlife.  My sons and I experienced the sighting of our first wild Tarantula during one of our frequent hikes in those hills when we moved here.  There are deer, coyote, owls, raccoons, skunks, opossums, rabbits, reptiles, and even a few bobcats and mountain lions in the hills. </p>
<p>The hills provide a natural border from the hectic and fast paced lifestyle of Orange and Los Angeles Counties.  On the eastern border of Chino Hills is a huge Army Corp of Engineer flood plain and Lake Prado that run along the route of the Santa Ana River.  This flood plain looks like a giant forest and runs alongside the 4 lane, 71 Freeway. </p>
<p>At night, a drive from the 91 northbound into Chino Hills still gives the impression of being in the middle of nowhere.  There is nature on both sides for miles around; all hills and rocks to the west, and a forest as far as you can see to the east. </p>
<p>The flood plain also serves as a natural nitrate cleanser and filters water flowing down from the San Gabriel and San Bernardino Mountains into Orange County.  The area contains a large hunting dog training facility, and archery and shooting ranges left over from the 1984 Olympics.  On weekend mornings you can hear sportsmen shooting far off in the distance from where we live.  There is also the Prado Regional Park with fishing, horseback riding, RV and camping hookups, and sports facilities.  The park is always busy on weekends with locals and with visitors from out of town. <a href="http://www.chinohills.com/news-articles-details/About_Chino_Hills_A_Personal_Perspective-96#more"><strong>More </strong></a><br />
</p>
<p><strong>Miscellaneous:</strong></p>
<ul>
  <li><a href="http://www.dfg.ca.gov" target="_blank" rel="nofollow">Hunting Information</a> (CA Dept. of Fish &amp; Game)<br />
  The Mission of the Department of Fish and Game is to manage California's diverse fish, wildlife,            and plant resources, and the habitats upon which they depend, for their ecological values and            for their use and enjoyment by the public.</li>
  <li><a href="pdfs/omnilink_chino-hills.pdf">Omnilink Bus Service for Seniors</a> <br />
  OmniLink is a demand-response transportation system providing curb-to-curb service  		    for the  		    general public in Yucaipa (and  portions of Calimesa) and Chino Hills. OmniLink minibuses do not go on a  		    regular route, but respond to customer’s telephone  		    requests for service on a daily basis.</li>
  <li><a href="http://www.omnitrans.org/routes/service-guide.shtml" target="_blank" rel="nofollow">Omnitrans</a> <br />
  Omnitrans is the public transit agency serving the San Bernardino                Valley. Founded in 1976 through a joint powers agreement, Omnitrans                carries over 15 million passengers each year throughout its 480-square              mile service area.</li>
  <li><a href="http://www.omnitrans.org/ride/access.shtml" target="_blank" rel="nofollow">Omnitrans Access Service</a> <br />
  Access is a service designed to meet the requirements of the Americans                with Disabilities Act (ADA). The purpose is to provide equal                access to public transportation for persons who are physically                or cognitively                unable to use regular bus service. Access provides curb-to-curb                service to complement the Omnitrans fixed-route bus system.</li>
</ul>
</div>
<div id="content" style="width:300px; float:left; border-left:dotted 1px #CCCCCC;">

<?PHP if($userid) { ?>
<h2>My Account</h2>
<table id="formtable" width="100%" cellspacing="1">
<tr><td>

<strong>Welcome, <?PHP echo $username; ?>.</strong><ul><li><a href="http://www.chinohills.com/my-articles/">View / Manage My Articles</a></li>
<li><a href="http://www.chinohills.com/my-business-listings/">View / Manage My Business Listings</a></li>
<li><a href="http://www.chinohills.com/my-profile/">Edit My Profile</a></li>
</ul>

</td></tr>
</table>
<?PHP } else { ?>

<h2>Log in</h2>
<form method="post" action="http://www.chinohills.com" x-enctype="multipart/form-data" accept-encoding="UTF-8">
<table id="formtable" width="100%" cellspacing="1">
<?PHP
### Print errors if they exist.
if(!empty($error)) {
	echo "<tr><td colspan=2 style=\"background: #FFDADA\">";
	echo "<ul>";

	foreach($error as $k => $v)
		echo "<li>$v</li>";

	echo "</ul>";

	echo "</td></tr>";

}
?>
  <tr>
	<td align="right" valign="top">Username</td>
	<td><input type="text" name="username" id="username" value="<?PHP echo $_POST["username"]; ?>"/></td>
  </tr>
  <tr>
	<td align="right" valign="top">Password</td>
	<td><input type="password" name="password" id="password" /></td>
  </tr>
	<td height="50" colspan="2" align="center" valign="middle"><input type="submit" name="submit" id="submit" value="Login" style="width: 50%; text-align:center;" /><br />
    <span class="small">Forgot your password? <a href="http://www.chinohills.com/password-retrieval">Click Here</a>.</span><br />
    <span class="small">Don't have an account? <a href="http://www.chinohills.com/register"><strong>Register for Free</strong></a>.</span>    </td>
  </tr>
</table>
</form>

    <?PHP } ?>

<h3 align="center">Benefits of Registering...</h3>
<ul class="small">
  <li><a href="http://www.chinohills.com/news-articles-details/Writing_Articles_to_Build_Your_Business-97" target="_blank"><strong>Write articles</strong></a> for ChinoHills.com. <strong>Share your opinions</strong> and comments in our open forum. Articles allow registered users to comment. </li>
  <li>Reach out to the Community... <strong><a href="http://www.chinohills.com/business-directory/Non_Profit_Organizations-718/">Non-profits</a></strong> &amp; <a href="http://www.chinohills.com/business-directory/Churches-207/"><strong>churches</strong></a> can reach out to Chino Hills &amp; Chino residents. </li>
  <li>
    <strong><a href="http://www.chinohills.com/register/manage-business-listing/">List your business for free</a>  or get a featured ad in our <a href="http://www.chinohills.com/business-directory/">Chino Hills / Chino Business Director</a>y. <a href="http://www.chinohills.com/business-directory/">Retailers</a>, <a href="http://www.chinohills.com/business-directory/Restaurants-887/">Restaurants</a>, <a href="http://www.chinohills.com/business-directory/Home_Builders-519/">Home Builders</a>, &amp; <a href="http://www.chinohills.com/business-directory/Real_Estate-850/">Realtors</a></strong> can share information and reach out to the community.  </li>
</ul>
  
  <div align="center"><a href="http://www.chinohills.com/cgi-bin/dada/mail.cgi" target="_blank"><img src="_images/chino-hills-newsletter.gif" alt="Subscribe to the Chino / Chino Hills area e-newsletter!" /></a>
  </div>
  <form action="http://www.chinohills.com/cgi-bin/dada/mail.cgi" method="get">
  <div align="center">
  <input type="hidden" name="list" value="chhlsnews" />
  <input type="radio" name="f" value="subscribe" checked="checked" />
    Subscribe
  <input type="radio" name="f" value="unsubscribe" />
    Unsubscribe
  <br />
  <input type="text" name="email" value="email address" size="16" onfocus="this.value='';" maxlength="1024" />
  <input type="submit" value="Submit" />
  <br />
  <a href="http://www.chinohills.com/cgi-bin/dada/mail.cgi/list/chhlsnews/"><strong>Visit News Message Archives</strong></a>  </div>
</form>
<center><!-- <table align="center">
  <tr><td><div align='center'><a href="http://www.onlineadstore.com"><img src="images/ads/300x300/Advertise-on-Chino-Hills2-Com.jpg" width="300" height="125" border="0" /></a></div></td></tr></table> -->
  <br />
      <!-- Begin Job-a-matic Widget Code v1.1 -->
<script type="text/javascript">
var jbb_widget_domain = 'http://jobs.chinohills.com';
var jbb_widget_list_count = 3;
var jbb_widget_theme = 'blue';
</script>

<div id="jbb_widget_blue">

<center><a href="http://jobs.chinohills.com/a/jbb/find-jobs" target="jobs">

<img src="http://jobs.chinohills.com/c/jbb/images/jbb-widget-vertical-gel/blue/view-all-jobs-button.gif"
alt="View All Jobs" border="0" class="jbb_widget_image"
onmouseover="this.src='http://jobs.chinohills.com/c/jbb/images/jbb-widget-vertical-gel/blue/view-all-jobs-button-over.gif'"
onmouseout="this.src='http://jobs.chinohills.com/c/jbb/images/jbb-widget-vertical-gel/blue/view-all-jobs-button.gif'"
onclick="this.src='http://jobs.chinohills.com/c/jbb/images/jbb-widget-vertical-gel/blue/view-all-jobs-button.gif'"/>
</a>


<p id="jbb_widget_powered_by">
<a href="http://www.simplyhired.com/" target="_blank">Jobs</a> powered by
<a href="http://www.simplyhired.com/" title="job search" style="font-weight: bold;">Simply Hired</a>
</p>

</center>
</div>

<script type="text/javascript" src="http://jobs.chinohills.com/c/jbb/js/jbb_widget_vertical_gel.js"></script>
<script type="text/javascript" src="http://jobs.chinohills.com/a/jbb/find-jobs-json/jbb_widget_list_jobposts/3"></script>
<!-- End Job-a-matic Widget Code v1.1 -->  
<br /> 

<div align="center"><a href="http://www.chinohills.com/classifieds.php"><img src="_images/bannerclassified240x60.gif" width="220" height="60" border="0" /></a><br />
    Hiring: <a href="classifieds.php#hiring">Real Estate Agents</a><br />
  </div>
   


<div style="width:300px; height:auto; background:#DDDDDD; border: 1px solid #DDDDDD; margin-top:8px;">
<a href="http://www.liafoundation.org" rel="nofollow" target="_blank"><img src="http://www.chinohills.com/images/ads/300x300/lia-foundation.jpg" border="0" /></a><br />
<center><a href="http://www.chinohills.com/contact?dept=advertising&ext=300x250" class="small">Advertise Here</a></center>
</div>
<center>
<strong>Please Send us Your Comments and Feedback</strong><br />
As a part of the community we are very interested in your thoughts and ideas and would appreciate any feedback. <a href="http://www.chinohills.com/contact/"><strong>Contact us here</strong></a>.

<P>&nbsp;&nbsp;&nbsp;<a href="http://www.associatedcities.com" target="_blank"><img src="_images/associatedcities.gif" width="264" height="66" border="0" /></a><br />
  We are proud to be a part of the Associated Cities Network.  Associated Cities sites include... </P>
<P><A Href="Http://Www.Albuquerque.com" target="_blank">Albuquerque.com.com</a> | <A Href="Http://Www.Branson.com" target="_blank">Branson.com</a> |  <A Href="Http://Www.Chulavista.com" target="_blank">Chula Vista.com</a> |  <A Href="Http://Www.Durango.com" target="_blank">Durango.com</a>  |  <A Href="Http://Www.Escondido.com" target="_blank">Escondido.com</a>   |    <A Href="Http://Www.Freeport.com" target="_blank">Freeport.com</a> |  <A Href="Http://Www.Grandjunction.com" target="_blank">Grand Junction .com</a>   |   <A Href="Http://Www.Honolulu.com" target="_blank">Honolulu.com</a>  |   <A Href="Http://Www.Indianapolis.com" target="_blank">Indianapolis.com</a>   |    <A Href="Http://Www.Johannesburg.com" target="_blank">Johannesburg.com</a>    |   <A Href="Http://Www.Louisville.com" target="_blank">Louisville.com</a> | <A Href="Http://Www.Milwaukee.com" target="_blank">Milwaukee.com</a>  |     <A Href="Http://Www.Newyorkcity.com" target="_blank">New York City.com</a>   |    <A Href="Http://Www.Oakland.com">Oakland.com</a>   |    <A Href="Http://Www.Portland.com">Portland.com</a>   |   <A Href="Http://Www.Richmond.com">Richmond.com</a>   |    <A Href="Http://Www.Santacruz.com" target="_blank">Santa Cruz.com</a>   |    <A Href="Http://Www.Toledo.com" target="_blank">Toledo.com.com</a>    |   <A Href="Http://Virginiabeach.com" target="_blank">Virginia Beach.com</a>  |     <A Href="Http://Www.Washingtondc.com" target="_blank">Washington DC.com</a>   |   <A Href="Http://Www.Yuma.com" target="_blank">Yuma.com</a>    |  <a href="http://www.chinohills.com/partners.php#associated_citiies">More...</a></P>
</center>
</div>



</td>
</tr>
<tr><td><?PHP include("overall_footer.php"); ?></td>
</tr></table>

<script src="http://www.google-analytics.com/urchin.js" type="text/javascript">
</script>
<script type="text/javascript">
_uacct = "UA-1433826-2";
urchinTracker();
</script>
</body>
</html>
