<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress.com" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>

<channel>
	<title>dom &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://wordpress.com/tag/dom/</link>
	<description>Feed of posts on WordPress.com tagged "dom"</description>
	<pubDate>Mon, 13 Oct 2008 08:27:14 +0000</pubDate>

	<generator>http://wordpress.com/tags/</generator>
	<language>en</language>

<item>
<title><![CDATA[Episode Six Preview]]></title>
<link>http://arigold.wordpress.com/?p=225</link>
<pubDate>Mon, 13 Oct 2008 01:00:31 +0000</pubDate>
<dc:creator>galacticplatypus</dc:creator>
<guid>http://arigold.da.wordpress.com/2008/10/13/episode-six-preview/</guid>
<description><![CDATA[Dom is back! The title of the show has given it away - &#8216;Redomption&#8217;..hilarious.
Check ou]]></description>
<content:encoded><![CDATA[<p>Dom is back! The title of the show has given it away - 'Redomption'..hilarious.<br />
Check out the preview clip on <a href="http://www.hbo.com/entourage/">hbo.com/entourage</a>. It seems like Dom is back, but not really, which maybe good news for all of the haters. I guess we will see how it really turns out in a an hour or two. I have a feeling Doug listened to the fans...</p>
<p>It looks like the girls are back in town as well, thanks to our beloved Turtle! Should be an action-packed episode so check back for my <a href="http://arigold.wordpress.com/2008/10/12/episode-6-redomption-review/">review</a>.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Status of the market in Onslow County]]></title>
<link>http://realestatemckenzie.wordpress.com/?p=263</link>
<pubDate>Sun, 12 Oct 2008 22:17:06 +0000</pubDate>
<dc:creator>McKenzie Laurence</dc:creator>
<guid>http://realestatemckenzie.da.wordpress.com/2008/10/12/status-of-the-market-in-onslow-county/</guid>
<description><![CDATA[I know you have been watching the news, with undoubtedly growing concern over not only the real esta]]></description>
<content:encoded><![CDATA[<p>I know you have been watching the news, with undoubtedly growing concern over not only the real estate market but also the banking industry as a whole.</p>
<p>The last few years, I saw the lending mess we are in now happening in slow motion. . .knowing that two pals of mine both with graduate degrees and high level white collar jobs had to obtain an interest only loan in the Northern Virginia area just to get into a small three bedroom two bath home in a safe neighborhood. . .something was seriously wrong, a hugely false real estate economy where the true supply and demand rates were hidden by the public's ability to qualify for significantly more loan in a short term investment. . .but a few years down the road when that balloon payment is due and that promotion didn't come, where does that land us? In markets other than ours, you can see the aftermath.</p>
<p>I know I have stood on my little blog soapbox before extolling the beauty of our simple market here in Eastern North Carolina. I refuse to say that our market is a "sure thing", those days are essentially gone, there are too many variables and I would be more than happy to do the market research for you on a case by case basis given your specific circumstances. . .there ARE ways to invest but, generally, think more buy and hold rather than flip and run.</p>
<p>Here in Eastern NC our major employer is the US Government. . .who garuntees employees a 3% or more pay raise a year. . .not to mention deployments of family separation pay, tax free zones, imminent danger pay and more. . .and don't even start me on the support staff and contractors who aren't counted as "military" in our area. . .we never had a "sexy" market here, no bubble, no 200% PLUS profits here. . .but like a mutual fun or bond. . .slowly and safely we have been plugging along.</p>
<p>Between January and this October, the average number of days a single family home sits on the market, 45 (not too shabby) and the percent sold was 58% with an average list price of 171,676 and average sales price of 167,853 with a price/list price ratio of 97.77%. In short, slower surely than in the last few years, however, still stable and a smart investment. I'll have more in the days to come but wanted to share the information snack with you.</p>
<p>Have a great Sunday, I am off to pretend to watch football, which, generally, I see the season as an excuse to not drink light beer and eat wings. . .I get told every Sunday who I am supposed to be rooting for because I generally spend my weekends working or writing things like this and not watching highlight reels or Madden talk about his turduckin.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Creating an asynchronous upload extender]]></title>
<link>http://updatepanel.wordpress.com/?p=30</link>
<pubDate>Sun, 12 Oct 2008 16:11:00 +0000</pubDate>
<dc:creator>tzkuei</dc:creator>
<guid>http://updatepanel.net/2008/10/12/creating-an-asynchronous-upload-extender/</guid>
<description><![CDATA[There have been many takes on the asynchronous upload control, but I am presenting another solution ]]></description>
<content:encoded><![CDATA[<p>There have been many takes on the asynchronous upload control, but I am presenting another solution that will extend any existing &#60;asp:FileUpload&#62; control.</p>
<p>The basic mechanism to asynchronous upload is to submit the form to a 'hidden' iframe:</p>
<p>[sourcecode language='html']<html><br />
<body></p>
<form action="http://www.this-page-intentionally-left-blank.org/" method="get" target="winUpload">
<input type="submit" value="Upload" />
</form>
<p><iframe id="winUpload" name="winUpload"></iframe><br />
</body><br />
</html>[/sourcecode]</p>
<p>In this example, I have declared the &#60;iframe&#62; in the mark-up, and set the form target to the &#60;iframe&#62;.  On clicking the upload button, you should see a "blank" page in the &#60;iframe&#62;.  This example works in all major browsers.</p>
<p>Since my goal is to create an extender, I need to create the &#60;iframe&#62; and hook up the form taget programmatically using DOM scripting:</p>
<p>[sourcecode language='html']<html><br />
<body></p>
<form action="http://www.this-page-intentionally-left-blank.org/" method="get">
<input type="submit" value="Upload" />
</form>
<p><script>
var iframeId = "winUpload";
var iframe = document.createElement("iframe");
iframe.id = iframeId;
iframe.name = iframeId;
document.body.appendChild(iframe);
document.forms[0].target = iframeId;
</script><br />
</body><br />
</html><br />
[/sourcecode]</p>
<p>This example worked in all major browsers except Internet Explorer! With IE, the form is submitted to a new page/tab instead of the &#60;iframe&#62; as specified in the target attribute.</p>
<p>Suspecting that may be the id and name attributes hadn't been set correctly, I added Sys.Debug.trace(document.getElementById("winUpload")) and Sys.Debug.trace(document.getElementsByName("winUpload") and the console output shows the &#60;iframe&#62; element, suggesting that the &#60;iframe&#62; was created, attributes set and added to the DOM.</p>
<p>So why can't the form find its target window? I looked up this problem in a search engine and found a handful of posts:</p>
<ul>
<li><span style="text-decoration:underline;"><span style="color:#800080;"><span style="text-decoration:underline;"><font color="#800080"><a href="http://msdn.microsoft.com/en-us/library/ms536389.aspx">http://msdn.microsoft.com/en-us/library/ms536389.aspx</a></font></span></span><a href="http://msdn.microsoft.com/en-us/library/ms536389.aspx"></a></span></li>
<li><a href="http://www.quirksmode.org/js/iframe.html">http://www.quirksmode.org/js/iframe.html</a></li>
<li><a href="http://terminalapp.net/submitting-a-form-with-target-set-to-a-script-generated-iframe-on-ie/">http://terminalapp.net/submitting-a-form-with-target-set-to-a-script-generated-iframe-on-ie/</a></li>
<li><a href="http://news.hping.org/comp.lang.javascript.archive/0959.html">http://news.hping.org/comp.lang.javascript.archive/0959.html</a></li>
<li><a href="http://developer.apple.com/internet/webcontent/iframe.html">http://developer.apple.com/internet/webcontent/iframe.html</a></li>
<li><a href="http://readystate4.com/2008/05/13/dynamically-creating-an-iframe-for-internet-explorer/">http://readystate4.com/2008/05/13/dynamically-creating-an-iframe-for-internet-explorer/</a></li>
</ul>
<p>Using the suggestions from these posts, here is the updated example:</p>
<p>[sourcecode language='html']<html><br />
<body></p>
<form action="http://www.this-page-intentionally-left-blank.org/" method="get">
<input type="submit" value="Upload" />
</form>
<p><script>
var iframeId = "winUpload";
if (document.all) {
    var iframe = document.createElement("<iframe id='" + iframeId + "' name='" + iframeId + "'>");
} else {
    var iframe = document.createElement("iframe");
}
iframe.id = iframeId;
iframe.name = iframeId;
document.body.appendChild(iframe);
document.forms[0].target = iframeId;
</script><br />
</body><br />
</html><br />
[/sourcecode]</p>
<p>B.t.w. If you are not using ASP.NET AJAX, why not take a look at <a href="http://developer.yahoo.com/yui/connection/" target="_blank">YUI's Connection Manager</a> which implements asynchronous file uploads.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Hábitos para Melhorar sua Criatividade]]></title>
<link>http://inspiracional.wordpress.com/?p=4</link>
<pubDate>Sun, 12 Oct 2008 05:38:40 +0000</pubDate>
<dc:creator>thiagobuzzy</dc:creator>
<guid>http://inspiracional.da.wordpress.com/2008/10/12/habitos-para-melhorar-sua-criatividade/</guid>
<description><![CDATA[Hábitos para Melhorar sua Criatividade.

Para iniciar este blog, achei um artigo muito interessante]]></description>
<content:encoded><![CDATA[<p><strong>Hábitos para Melhorar sua Criatividade.</strong></p>
<p><img class="aligncenter size-large wp-image-5" title="Criatividade" src="http://inspiracional.wordpress.com/files/2008/10/stayalive.jpg?w=455" alt="" width="455" height="568" /><br />
Para iniciar este blog, achei um artigo muito interessante sobre a criatividade. Supondo que a maioria das pessoas que irão ler o blog, são pessoas ligadas a arte, design, literatura, quadrinhos, música, ou outras áreas criativas, achei legal começar com um artigo sobre o ponto de vista psicológico da criatividade.</p>
<p>Criatividade... é a capacidade de criar ou produzir novas e valiosas coisas, é a habilidade do cérebro de chegar a novas conclusões e resolver problemas de modo original.</p>
<p><strong>Você é Criativo?</strong></p>
<p>Confira o perfil psicológico de pessoas criativas:</p>
<p>Características Cognitivas:<br />
- Percepção Refinada<br />
- Capacidade de Intuição<br />
- Imaginação.<br />
- Capacidade Crítica<br />
- Curiosidade Intelectual.</p>
<p>Características Afetivas:<br />
- Graça e Liberdade<br />
- Entusiasmo.<br />
- Profundidade / Perspicácia.<br />
- Perseverança / Afinco.</p>
<p>Liberdade? O interessante é que, de acordo com esse perfil, o melhor design, ou a  coisa mais criativa, viria de artistas freelancers, supondo que eles tem uma vida mais livre e original, ao contrário do usual. Já a capacidade crítica, a perspicácia e a curiosidade intelectual podem ser adquiridas com aperfeiçoamento e treino.</p>
<p><a href="http://inspiracional.files.wordpress.com/2008/10/mith.jpg"><img class="aligncenter size-full wp-image-13" title="Mito" src="http://inspiracional.wordpress.com/files/2008/10/mith.jpg" alt="" width="450" height="354" /></a></p>
<p><strong>Quebrando o Mito:</strong></p>
<p>Não acreditamos em dons. Ponto. Acreditamos na perseverança e preparação.<br />
Se tivéssemos dons ou talentos, porque compramos livros, frequentamos aulas, gastamos horas treinando para sermos melhores versões de nós mesmos?<br />
Por isso ponham um fim nos mitos de inspirações divinas, talentos natos, ou idéias espontâneas. A Criatividade, como tudo na vida, pode ser treinada, o sucesso depende de nosso aperfeiçoamento.</p>
<p><strong>Acredite em Você:</strong></p>
<p>Quem acredita em si mesmo, está certo que sua missão será bem sucedida e sabe como focar produtivamente no aprendizado. Quando erram, consideram isso como um meio de melhorar, e não se desistir.</p>
<p>Se você que se tornar um bom designer, só tente não cometer os mesmo erros, seja confiante que com o passar do tempo você vai melhorar. Nosso objetivo não é ser O MELHOR, mas sim melhorar cada vez mais.</p>
<p><strong>Estude as regras... e depois, quebre-as.</strong></p>
<p>Criatividade não é nada mais do que quebrar regras, mas para faze-las, primeiro você deve conhece-las. Por isso é sempre importante estudar o "clássico" seja você um pintor, escritor ou um designer. Se você quer ser um bom pintor surrealista, primeiro estude o realismo.</p>
<p>Designers sempre pegam esse ponto no processo de desenvolvimento. Primeiro eles estudam o cliente (entendem suas regras), para depois esticar, quebrar, forçar...</p>
<p><img class="aligncenter size-full wp-image-15" title="cartao_poulnielsenxs" src="http://inspiracional.wordpress.com/files/2008/10/cartao_poulnielsenxs.jpg" alt="" width="400" height="559" /><br />
<strong>O desenho é demostrado desenhando...<br />
</strong><br />
Não conheço um designer ou desenhista, que começa trabalhar sabendo exatamente o que vai criar. Claro que a primeira coisa a se fazer, é entender o trabalho, elaborar as informações, assimila-las e então... descançar, desconectar e relaxar. <strong>As boas idéias aparecem quando você está fazendo outra coisa.</strong></p>
<p>Quando você voltar a sua mesa, sempre, comece a rascunhar no papel (ou photoshop). A idéia é sempre encarar o papel branco quando se está relaxado, deste modo você está desconectado de seu cérebro racional e ativa áreas menos conscientes, onde as idéias não são gerenciadas pela lógica, e sim vão tomando forma naturalmente.</p>
<p>Se você puder fazer isso em algum lugar ou com alguém que te faça sentir bem, melhor ainda.<br />
<strong>Superando o bloqueio criativo.</strong></p>
<p>Quando ele vem, a solução sempre é dificil. Tente relaxar, caminhar, ler uma revista, sair com os amigos... é melhor perder 2 horas deste modo, a passar o dia inteiro na frente de uma tela em branco.</p>
<p>Mas você pode evitar os bloqueios, organizando sua vida pra que ela não vire um pesadelo.</p>
<p>- Não aceite trabalhos com pouco prazo, ou muito trabalho.<br />
- Não trabalhe para pessoas que não concordam com sua maneira de entender o design/arte.<br />
- Planeje o trabalho, para que você tenha tempo para relaxar.<br />
- Faça uma pausa a cada 1 ou 2 horas.<br />
- Começe o dia com a coisas rotineiras, pra ir aquecendo. Depois, inicie suas tarefas criativas.<br />
- Tente ter trabalhos variados: ilustraçoes, websites, logos...<br />
- Tire uma soneca de vez em quando, muitas idéias vem quando você está entre o estado sonolento e acordado.</p>
<p><em>Claro, que infelizmente, não é possível realmente praticar isso sempre. Mas eu acho que controlar o estresse é outra maneira de um bom designer/ilustrador.</em></p>
<p><img class="aligncenter size-full wp-image-14" title="Acredite" src="http://inspiracional.wordpress.com/files/2008/10/like.jpg" alt="" width="400" height="348" /></p>
<p><strong>Alimente sua Mente</strong></p>
<p>Muita gente acha que somos malucos, quando estamos lendo quadrinhos ou jogando video-games. Mas para cultivar nossa cultura visual, é parte de nosso trabalho, irmos ao cinema, jogar video-games, ler quadrinhos, visitar exibições ou parques... isso é trabalhar. Tudo o que nos rodeia pode nos inspirar no próximo projeto.</p>
<p><strong>Preocupe-se com seu corpo</strong></p>
<p>Nosso grande problema, geralmente, é o sedentarismo. Nem preciso dizer que é impossível ser criativo quando as costas doem.</p>
<p>Por isso é extremamente recomendado praticar algum esporte, ir na academia... tente ficar em forma.</p>
<p>A mesma coisa com a dieta, coma coisas variadas, muitas frutas e vegetais. Se você está acima do peso, tente perder alguns quilos.</p>
<p><em>Para ser criativo, você precisar estar feliz, e isso acontece quando você também está bem fisicamente.</em></p>
<p><img class="aligncenter size-large wp-image-16" title="Aprecie" src="http://inspiracional.wordpress.com/files/2008/10/hearthands.jpg?w=455" alt="" width="455" height="338" /></p>
<p><strong>Aprecia seu trabalho!<br />
</strong><br />
É muito importante saber apreciar seu trabalho, se envolver emocionalmente, gostar dele, ama-lo, torna-lo um modo de vida.</p>
<p>Se você não for criativo em sua vida pessoal, as chances de ser criativo no trabalho serão poucas.</p>
<p>No final, tudo é resumido em: seja feliz com seu trabalho, se você gosta do que faz, continue fazendo!</p>
<p>Estude, leia, busque inspirações, conheça novos artistas, novas pessoas, mantenha-se atualizado, aprenda coisas... Existem infinidades de artigos na internet sobre isso. Nosso blog vai ser uma grande referência pra buscar inspiração, então fique ligado.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Blom Dondje]]></title>
<link>http://tromboone.wordpress.com/?p=79</link>
<pubDate>Sat, 11 Oct 2008 15:03:50 +0000</pubDate>
<dc:creator>tromboone</dc:creator>
<guid>http://tromboone.da.wordpress.com/2008/10/11/blom-dondje/</guid>
<description><![CDATA[Een klassieker!!

]]></description>
<content:encoded><![CDATA[<p>Een klassieker!!</p>
<p><span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/Beb1kmsNoRs'></param><param name='wmode' value='transparent'></param><embed src='http://www.youtube.com/v/Beb1kmsNoRs&rel=0' type='application/x-shockwave-flash' wmode='transparent' width='425' height='350'></embed></object></span></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Gears 2 Goes Gold]]></title>
<link>http://epicponyz.wordpress.com/?p=1854</link>
<pubDate>Sat, 11 Oct 2008 14:43:55 +0000</pubDate>
<dc:creator>epicponyz</dc:creator>
<guid>http://epicponyz.com/2008/10/11/gears-2-goes-gold/</guid>
<description><![CDATA[
&#8220;SHITCHYEAH!&#8221; Yesterday some exciting news made its way to the internet. Gears of War 2]]></description>
<content:encoded><![CDATA[<p><a href="http://epicponyz.files.wordpress.com/2008/10/gearsgold.jpg"><img class="alignnone size-full wp-image-1855" title="gearsgold" src="http://epicponyz.wordpress.com/files/2008/10/gearsgold.jpg" alt="" width="286" height="322" /></a></p>
<p>"SHITCHYEAH!" Yesterday some <a href="http://thexboxdomain.com/home/2008/10/oh-yeah-gears-2-is-now-gold/">exciting news</a> made its way to the internet. <a href="http://gearsofwar.xbox.com">Gears of War 2</a> was said to FINALLY gone gold. Yes thats right, the sequel is now complete/manufacturing and will soon ship to stores. Isn't it torture every time a game goes gold. Its so close, yet so far away. Gears of War 2 drops on November 7, 2008. Pre-order now through Amazon and receive a <a href="http://www.amazon.com/Gears-War-2-Xbox-360/dp/B000ZK9QD2/ref=pd_sim_vg_1">bonus 10 Dollar Gift Certificate</a>.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Gears of War #1 - Review]]></title>
<link>http://wcbr.wordpress.com/?p=2249</link>
<pubDate>Sat, 11 Oct 2008 13:00:32 +0000</pubDate>
<dc:creator>pozzyfreak</dc:creator>
<guid>http://weeklycomicbookreview.com/2008/10/11/gears-of-war-1-review/</guid>
<description><![CDATA[By Joshua Ortega (Writer), Liam Sharp (Artist), and Johnny Rench (Colorist)
The Story: Taking place ]]></description>
<content:encoded><![CDATA[<p><em>By Joshua Ortega (Writer), Liam Sharp (Artist), and Johnny Rench (Colorist)</em></p>
<p><img class="alignright" style="border:1px solid black;margin:5px;" src="http://www.dccomics.com/media/product/1/0/10421_180x270.jpg" alt="" width="250" height="375" /><strong>The Story:</strong> Taking place roughly two months after the end of the first <em>Gears of War </em>game, hero Marcus Fenix and a new recruit, Jace, are out on patrol searching for any survivors of a brutal Locust attack. They find a few, one a familiar face, and kill quite a few Locusts along the way.</p>
<p><strong>What's Good: </strong>How well the creative team nails the feel of the Xbox 360 game. The art, dialogue, and story all do a wonderful job of using the atmosphere and characters to great effect. If you're looking for a story about tough guys killing monsters using excessive violence, you can't do much better than this. As a fan of the game, I couldn't be more satisfied.</p>
<p><strong>What's Not So Good: </strong>As you probably guessed, this isn't exactly the deepest comic on the stands. The characters are your generic military tough guys, the violence may be too much for some to handle, and the comic never really rises above its videogame roots. Also, the storyline is written assuming that you have played the game at some point, so those unfamiliar with <em>Gears </em>may find themselves wondering about certain references.</p>
<p>On the technical side, the dark coloring muddies up and confuses a scene or two, but this is only a slight annoyance in an otherwise good looking book.</p>
<p><strong>Conclusion: </strong>Action junkies and <em>Gears</em> fans should really take the time to check out this comic. It faithfully translates everything that made the game such a success into an enjoyable, visually impressive book. A mindless, yet pleasant surprise in every way.</p>
<p><strong>Grade: B</strong></p>
<p>-Kyle Posluszny</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Tigard, Oregon home sales (Walnut Grove Neighborhood) (10/10/2008)]]></title>
<link>http://yourlifetimeagent.wordpress.com/?p=812</link>
<pubDate>Sat, 11 Oct 2008 02:43:47 +0000</pubDate>
<dc:creator>yourlifetimeagent</dc:creator>
<guid>http://yourlifetimeagent.da.wordpress.com/2008/10/10/tigard-oregon-home-sales-walnut-grove-neighborhood-10102008/</guid>
<description><![CDATA[The Walnut Grove neighborhood of Tigard, Oregon starts at 121st and goes east to Pacific Hwy, then s]]></description>
<content:encoded><![CDATA[<p>The Walnut Grove neighborhood of <a target="_blank" href="http://www.ifoundyournewhome.com/More_About_Tigard/page_1838442.html" title="City of Tigard - History">Tigard, Oregon</a> starts at 121st and goes east to Pacific Hwy, then south starting at Walnut street to Gaarde Street.</p>
<p><a target="_blank" href="http://maps.google.com/maps/ms?ie=UTF8&#38;hl=en&#38;msa=0&#38;msid=107286649515521687082.000441e38891f419d1a68&#38;ll=45.424118,-122.783804&#38;spn=0.022711,0.069094&#38;z=14&#38;om=1"><img width="393" src="http://i162.photobucket.com/albums/t241/YourLifetimeAgent/website/walnut%20Grove%20Neighborhood/WalnutGroveNeighborhoodGoogleMap.jpg" alt="Tigard Neighborhood" height="330" /></a><br />
<a target="_blank" href="http://maps.google.com/maps/ms?ie=UTF8&#38;hl=en&#38;msa=0&#38;msid=107286649515521687082.000441e38891f419d1a68&#38;ll=45.424118,-122.783804&#38;spn=0.022711,0.069094&#38;z=14&#38;om=1">View Larger Map</a></p>
<p>As of 10/10/2008 here are the stats for the Walnut Grove Neighborhood. </p>
<table border="1" width="350" cellPadding="2" cellSpacing="0">
<tr>
<td><strong>Total number of homes for sale:</strong></td>
<td align="right">44</td>
</tr>
<tr>
<td>Average List Price:</td>
<td align="right">$380,941</td>
</tr>
<tr>
<td>Average Days on Market:</td>
<td align="right">101</td>
</tr>
</table>
<p><br></p>
<table border="1" width="350" cellPadding="2" cellSpacing="0">
<tr>
<td><strong>Total Pending home sales:            </strong></td>
<td align="right">4</td>
</tr>
<tr>
<td>Average List Price:</td>
<td align="right">$285,663</td>
</tr>
<tr>
<td>Average Days on Market:</td>
<td align="right">70</td>
</tr>
</table>
<p><br></p>
<table border="1" width="350" cellPadding="2" cellSpacing="0">
<tr>
<td><b>Total Expired Home Sales Last 7 days         </b></td>
<td align="right">0</td>
</tr>
<tr>
<td>Average List Price:</td>
<td align="right">$000,000</td>
</tr>
<tr>
<td>Average Days on Market:</td>
<td align="right">0</td>
</tr>
</table>
<p><br></p>
<table border="1" width="350" cellPadding="2" cellSpacing="0">
<tr>
<td><strong>Total Sold in the last 30 days:        </strong></td>
<td align="right">0</td>
</tr>
<tr>
<td>Average List Price:</td>
<td align="right">$000,000</td>
</tr>
<tr>
<td>Average Sold Price:</td>
<td align="right">$000,000</td>
</tr>
<tr>
<td>Average Days on Market:</td>
<td align="right">0</td>
</tr>
</table>
<p><br></p>
<p><strong><a target="_blank" href="http://www.ifoundyournewhome.com/Walnut_Grove_Neighborhood_Tigard_Oregon/page_1983349.html">Click here to view the last few weekly reports and the averages since I started keeping stats</a></strong></p>
<p>For a complete list of homes for sale in the Mountainview Neighborhood, please call or <a href="mailto:Todd@IFoundYourNewHome.com?subject=I would like to request the listings in the Walnut Grove Neighborhood of Tigard">Click here</a>, to request an update.</p>
<p>If you are interested in selling your home for top dollar in the quickest amount of time, please contact me anytime at 503-524-9494 or <a href="mailto:Todd@IFoundYourNewHome.com?subject=I would like to request the listings in the Walnut Grove Neighborhood of Tigard">Click here</a> to send me an e-mail requesting further information.</p>
<p><img width="112" src="http://activerain.com/image_store/uploads/8/6/4/6/2/ar119640485226468.jpg" alt=" " height="40" /></p>
<p>Todd Clark - broker<br />
Kastings &#38; Associates<br />
Phone: (503)524-9494<br />
Fax: (503)622-8739</p>
<p><a target="_blank" href="mailto:Todd@IFoundYourNewHome.com?subject=Contact from your blog"><img width="75" src="http://activerain.com/image_store/uploads/1/8/1/5/3/ar120041612435181.png" alt=" " height="32" /></a> <a target="_blank" href="http://www.ifoundyournewhome.com/MLS_Search/page_1974098.html"><img width="85" src="http://activerain.com/image_store/uploads/8/6/8/1/0/ar120041617301868.png" alt=" " height="31" /></a> <a target="_blank" href="http://www.ifoundyournewhome.com/"><img width="75" src="http://activerain.com/image_store/uploads/1/2/4/7/8/ar120041623687421.png" alt=" " height="31" /></a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Tigard, Oregon home sales (Tigard Neighborhood) (10/10/2008)]]></title>
<link>http://yourlifetimeagent.wordpress.com/?p=810</link>
<pubDate>Sat, 11 Oct 2008 02:42:59 +0000</pubDate>
<dc:creator>yourlifetimeagent</dc:creator>
<guid>http://yourlifetimeagent.da.wordpress.com/2008/10/10/tigard-oregon-home-sales-tigard-neighborhood-10102008/</guid>
<description><![CDATA[The Tigard neighborhood of Tigard, Oregon is a triangle with it&#8217;s borders being Pacific Hwy, H]]></description>
<content:encoded><![CDATA[<p>The Tigard neighborhood of <a target="_blank" href="http://www.ifoundyournewhome.com/More_About_Tigard/page_1838442.html" title="City of Tigard - History">Tigard, Oregon</a> is a triangle with it's borders being Pacific Hwy, Hall Blvd and McDonald Street. The only park in the neighborhood is Fanno Park off Hall Blvd.</p>
<p><a target="_blank" href="http://maps.google.com/maps/ms?ie=UTF8&#38;hl=en&#38;msa=0&#38;ll=45.476383,-122.826033&#38;spn=0.02269,0.069094&#38;z=14&#38;om=1&#38;msid=107286649515521687082.000441b1477f13b7e13bb"><img width="369" src="http://i162.photobucket.com/albums/t241/YourLifetimeAgent/website/Tigard%20Neighborhood/TigardNeighborhoodGoogleMap.jpg" alt="Tigard Neighborhood" height="315" /></a><br />
<a target="_blank" href="http://maps.google.com/maps/ms?ie=UTF8&#38;hl=en&#38;msa=0&#38;ll=45.464947,-122.869978&#38;spn=0.045388,0.138187&#38;z=13&#38;om=1&#38;msid=107286649515521687082.000441934f0a96f60d82f">View Larger Map</a></p>
<p>As of 10/10/2008 here are the stats for the Tigard Neighborhood. This week I’ve changed the stats to only count the sales from the last 7 days to give a better reflection of what is going on in the neighborhood during any given week.</p>
<table border="1" width="350" cellPadding="2" cellSpacing="0">
<tr>
<td><strong>Total number of homes for sale:</strong></td>
<td align="right">32</td>
</tr>
<tr>
<td>Average List Price:</td>
<td align="right">$366,253</td>
</tr>
<tr>
<td>Average Days on Market:</td>
<td align="right">128</td>
</tr>
</table>
<p><br></p>
<table border="1" width="350" cellPadding="2" cellSpacing="0">
<tr>
<td><strong>Total Pending home sales:            </strong></td>
<td align="right">2</td>
</tr>
<tr>
<td>Average List Price:</td>
<td align="right">$380,500</td>
</tr>
<tr>
<td>Average Days on Market:</td>
<td align="right">23</td>
</tr>
</table>
<p><br></p>
<table border="1" width="350" cellPadding="2" cellSpacing="0">
<tr>
<td><b>Total Expired Home Sales Last 7 days         </b></td>
<td align="right">0</td>
</tr>
<tr>
<td>Average List Price:</td>
<td align="right">$000,000</td>
</tr>
<tr>
<td>Average Days on Market:</td>
<td align="right">0</td>
</tr>
</table>
<p><br></p>
<table border="1" width="350" cellPadding="2" cellSpacing="0">
<tr>
<td><strong>Total Sold in the last 30 days:        </strong></td>
<td align="right">0</td>
</tr>
<tr>
<td>Average List Price:</td>
<td align="right">$000,000</td>
</tr>
<tr>
<td>Average Sold Price:</td>
<td align="right">$000,000</td>
</tr>
<tr>
<td>Average Days on Market:</td>
<td align="right">0</td>
</tr>
</table>
<p><br></p>
<p><strong><a target="_blank" href="http://www.ifoundyournewhome.com/Tigard_Neighborhood_Tigard_Oregon/page_1983346.html">Click here to view the last few weekly reports and the averages since I started keeping stats</a></strong></p>
<p>For a complete list of homes for sale in the Mountainview Neighborhood, please call or <a href="mailto:Todd@IFoundYourNewHome.com?subject=I would like to request the listings in the Tigard Neighborhood of Tigard">Click here</a>, to request an update.</p>
<p>If you are interested in selling your home for top dollar in the quickest amount of time, please contact me anytime at 503-524-9494 or <a href="mailto:Todd@IFoundYourNewHome.com?subject=I would like to request the listings in the Tigard Neighborhood of Tigard">Click here</a> to send me an e-mail requesting further information.</p>
<p><img width="112" src="http://activerain.com/image_store/uploads/8/6/4/6/2/ar119640485226468.jpg" alt=" " height="40" /></p>
<p>Todd Clark - broker<br />
Kastings &#38; Associates<br />
Phone: (503)524-9494<br />
Fax: (503)622-8739</p>
<p><a target="_blank" href="mailto:Todd@IFoundYourNewHome.com?subject=Contact from your blog"><img width="75" src="http://activerain.com/image_store/uploads/1/8/1/5/3/ar120041612435181.png" alt=" " height="32" /></a> <a target="_blank" href="http://www.ifoundyournewhome.com/MLS_Search/page_1974098.html"><img width="85" src="http://activerain.com/image_store/uploads/8/6/8/1/0/ar120041617301868.png" alt=" " height="31" /></a> <a target="_blank" href="http://www.ifoundyournewhome.com/"><img width="75" src="http://activerain.com/image_store/uploads/1/2/4/7/8/ar120041623687421.png" alt=" " height="31" /></a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Tigard, Oregon home sales (Summerfield Neighborhood) (10/10/2008)]]></title>
<link>http://yourlifetimeagent.wordpress.com/?p=808</link>
<pubDate>Sat, 11 Oct 2008 02:42:14 +0000</pubDate>
<dc:creator>yourlifetimeagent</dc:creator>
<guid>http://yourlifetimeagent.da.wordpress.com/2008/10/10/tigard-oregon-home-sales-summerfield-neighborhood-10102008/</guid>
<description><![CDATA[The Summerfield neighborhood of Tigard, Oregon goes South from Royality Pkwy/Kable street to to Durh]]></description>
<content:encoded><![CDATA[<p>The Summerfield neighborhood of <a target="_blank" href="http://www.ifoundyournewhome.com/More_About_Tigard/page_1838442.html" title="City of Tigard - History">Tigard, Oregon</a> goes South from Royality Pkwy/Kable street to to Durham Road, East from Pacific Hwy to 98th Ave, This community is a 55+ community and features a the Summerfield golf course.</p>
<p><a target="_blank" href="http://maps.google.com/maps/ms?ie=UTF8&#38;hl=en&#38;msa=0&#38;om=1&#38;msid=107286649515521687082.0004417505401b5c5ad06&#38;ll=45.406947,-122.787151&#38;spn=0.022718,0.069094&#38;z=14"><img width="355" src="http://activerain.com/image_store/uploads/3/7/2/3/4/ar119790910943273.jpg" alt="Summerfield Neighborhood" height="290" /></a><br />
<a href="http://maps.google.com/maps/ms?ie=UTF8&#38;hl=en&#38;msa=0&#38;om=1&#38;msid=107286649515521687082.0004417505401b5c5ad06&#38;ll=45.406947,-122.787151&#38;spn=0.021091,0.036478&#38;z=14&#38;source=embed">View Larger Map</a></p>
<p>As of 10/10/2008 here are the stats for the Summerfield Neighborhood. This week I’ve changed the stats to only count the sales from the last 7 days to give a better reflection of what is going on in the neighborhood during any given week.</p>
<table border="1" width="350" cellPadding="2" cellSpacing="0">
<tr>
<td><strong>Total number of homes for sale:</strong></td>
<td align="right">35</td>
</tr>
<tr>
<td>Average List Price:</td>
<td align="right">$254,979</td>
</tr>
<tr>
<td>Average Days on Market:</td>
<td align="right">69</td>
</tr>
</table>
<p><br></p>
<table border="1" width="350" cellPadding="2" cellSpacing="0">
<tr>
<td><strong>Total Pending home sales:            </strong></td>
<td align="right">3</td>
</tr>
<tr>
<td>Average List Price:</td>
<td align="right">$291,567</td>
</tr>
<tr>
<td>Average Days on Market:</td>
<td align="right">50</td>
</tr>
</table>
<p><br></p>
<table border="1" width="350" cellPadding="2" cellSpacing="0">
<tr>
<td><b>Total Expired Home Sales Last 7 days         </b></td>
<td align="right">1</td>
</tr>
<tr>
<td>Average List Price:</td>
<td align="right">$275,000</td>
</tr>
<tr>
<td>Average Days on Market:</td>
<td align="right">96</td>
</tr>
</table>
<p><br></p>
<table border="1" width="350" cellPadding="2" cellSpacing="0">
<tr>
<td><strong>Total Sold in the last 30 days:        </strong></td>
<td align="right">1</td>
</tr>
<tr>
<td>Average List Price:</td>
<td align="right">$157,500</td>
</tr>
<tr>
<td>Average Sold Price:</td>
<td align="right">153,000</td>
</tr>
<tr>
<td>Average Days on Market:</td>
<td align="right">7</td>
</tr>
</table>
<p><br></p>
<p><strong><a target="_blank" href="http://www.ifoundyournewhome.com/Summerfield_Neighborhood_Tigard_Oregon/page_1983344.html">Click here to view the last few weekly reports and the averages since I started keeping stats</a></strong></p>
<p>For a complete list of homes for sale in the Mountainview neighborhood, please call or <a href="mailto:Todd@IFoundYourNewHome.com?subject=I would like to request the listings in the Summerfield Neighborhood of Tigard">Click here</a>, to request an<br />
update.</p>
<p>If you are interested in selling your home for top dollar in the quickest amount of time, please contact me anytime at 503-524-9494 or <a href="mailto:Todd@IFoundYourNewHome.com?subject=I would like to request the listings in the Summerfield Neighborhood of Tigard">Click here</a> to send me an e-mail requesting further information.</p>
<p><img width="112" src="http://activerain.com/image_store/uploads/8/6/4/6/2/ar119640485226468.jpg" alt=" " height="40" /></p>
<p>Todd Clark - broker<br />
Kastings &#38; Associates<br />
Phone: (503)524-9494<br />
Fax: (503)622-8739</p>
<p><a target="_blank" href="mailto:Todd@IFoundYourNewHome.com?subject=Contact from your blog"><img width="75" src="http://activerain.com/image_store/uploads/1/8/1/5/3/ar120041612435181.png" alt=" " height="32" /></a> <a target="_blank" href="http://www.ifoundyournewhome.com/MLS_Search/page_1974098.html"><img width="85" src="http://activerain.com/image_store/uploads/8/6/8/1/0/ar120041617301868.png" alt=" " height="31" /></a> <a target="_blank" href="http://www.ifoundyournewhome.com/"><img width="75" src="http://activerain.com/image_store/uploads/1/2/4/7/8/ar120041623687421.png" alt=" " height="31" /></a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Tigard, Oregon home sales (Summer Lake Neighborhood) (10/10/2008)]]></title>
<link>http://yourlifetimeagent.wordpress.com/?p=806</link>
<pubDate>Sat, 11 Oct 2008 02:41:19 +0000</pubDate>
<dc:creator>yourlifetimeagent</dc:creator>
<guid>http://yourlifetimeagent.da.wordpress.com/2008/10/10/tigard-oregon-home-sales-summer-lake-neighborhood-10102008/</guid>
<description><![CDATA[The Summer Lake neighborhood of Tigard, Oregon goes west, starting at 121st Ave, to Murray Rd, and s]]></description>
<content:encoded><![CDATA[<p>The Summer Lake neighborhood of <a target="_blank" href="http://www.ifoundyournewhome.com/More_About_Tigard/page_1838442.html" title="City of Tigard - History">Tigard, Oregon</a> goes west, starting at 121<sup>st</sup> Ave, to Murray Rd, and south, along Scholls Ferry. On the back side of the boundary it follows Walnut from Barrows Road to 121st. This part of <a target="_blank" href="http://www.ifoundyournewhome.com/More_About_Tigard/page_1838442.html" title="City of Tigard - History">Tigard, Oregon</a> is partially in Tigard School district and partially in the Beaverton School District. Within the boundaries of the neighborhood are Jack Park and Summer Lake Park.</p>
<p><a target="_blank" href="http://maps.google.com/maps/ms?ie=UTF8&#38;hl=en&#38;msa=0&#38;ll=45.436165,-122.806721&#38;spn=0.022706,0.069094&#38;z=14&#38;om=1&#38;msid=107286649515521687082.000440e71f3aa40ee327d"><img width="392" src="http://activerain.com/image_store/uploads/7/6/8/1/9/ar119726239991867.jpg" alt=" " height="271" /></a><br />
<a target="_blank" href="http://maps.google.com/maps/ms?ie=UTF8&#38;hl=en&#38;msa=0&#38;ll=45.436165,-122.806721&#38;spn=0.022706,0.069094&#38;z=14&#38;om=1&#38;msid=107286649515521687082.000440e71f3aa40ee327d">View Larger Map</a></p>
<p>As of 10/10/2008 here are the stats for the Greenburg Neighborhood. This week I’ve changed the stats to only count the sales from the last 7 days to give a better reflection of what is going on in the neighborhood during any given week.</p>
<table border="1" width="350" cellPadding="2" cellSpacing="0">
<tr>
<td><strong>Total number of homes for sale:</strong></td>
<td align="right">52</td>
</tr>
<tr>
<td>Average List Price:</td>
<td align="right">$398,796</td>
</tr>
<tr>
<td>Average Days on Market:</td>
<td align="right">81</td>
</tr>
</table>
<p><br></p>
<table border="1" width="350" cellPadding="2" cellSpacing="0">
<tr>
<td><strong>Total Pending home sales:            </strong></td>
<td align="right">6</td>
</tr>
<tr>
<td>Average List Price:</td>
<td align="right">$320,950</td>
</tr>
<tr>
<td>Average Days on Market:</td>
<td align="right">50</td>
</tr>
</table>
<p><br></p>
<table border="1" width="350" cellPadding="2" cellSpacing="0">
<tr>
<td><b>Total Expired Home Sales Last 7 days         </b></td>
<td align="right">1</td>
</tr>
<tr>
<td>Average List Price:</td>
<td align="right">$259,900</td>
</tr>
<tr>
<td>Average Days on Market:</td>
<td align="right">50</td>
</tr>
</table>
<p><br></p>
<table border="1" width="350" cellPadding="2" cellSpacing="0">
<tr>
<td><strong>Total Sold in the last 30 days:        </strong></td>
<td align="right">1</td>
</tr>
<tr>
<td>Average List Price:</td>
<td align="right">$388,818</td>
</tr>
<tr>
<td>Average Sold Price:</td>
<td align="right">$340,000</td>
</tr>
<tr>
<td>Average Days on Market:</td>
<td align="right">78</td>
</tr>
</table>
<p><br></p>
<p><strong><a target="_blank" href="http://www.ifoundyournewhome.com/Summer_Lake_Neighborhood_Tigard_Oregon/page_1983338.html">Click here to view the last few weekly reports and the averages since I started keeping stats</a></strong></p>
<p>For a complete list of homes for sale in the Summer Lake Neighborhood, please call or <a href="mailto:Todd@IFoundYourNewHome.com?subject=I would like to request the listings in the Summer%Lake Neighborhood of Tigard">click here</a>, to request an update.</p>
<p>If you are interested in selling your home for top dollar in the quickest amount of time, please contact me anytime at 503-524-9494 or <a href="mailto:Todd@IFoundYourNewHome.com?subject=I would like to request the listings in the Summer%Lake Neighborhood of Tigard">click here</a> to send me an e-mail requesting further information.</p>
<p><img width="112" src="http://activerain.com/image_store/uploads/8/6/4/6/2/ar119640485226468.jpg" alt=" " height="40" /></p>
<p>Todd Clark - broker<br />
Kastings &#38; Associates<br />
Phone: (503)524-9494<br />
Fax: (503)622-8739</p>
<p><a target="_blank" href="mailto:Todd@IFoundYourNewHome.com?subject=Contact from your blog"><img width="75" src="http://activerain.com/image_store/uploads/1/8/1/5/3/ar120041612435181.png" alt=" " height="32" /></a> <a target="_blank" href="http://www.ifoundyournewhome.com/MLS_Search/page_1974098.html"><img width="85" src="http://activerain.com/image_store/uploads/8/6/8/1/0/ar120041617301868.png" alt=" " height="31" /></a> <a target="_blank" href="http://www.ifoundyournewhome.com/"><img width="75" src="http://activerain.com/image_store/uploads/1/2/4/7/8/ar120041623687421.png" alt=" " height="31" /></a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Beaverton, Oregon home sales (Sorrento Ridge Neighborhood) (10/10/2008)]]></title>
<link>http://yourlifetimeagent.wordpress.com/?p=804</link>
<pubDate>Sat, 11 Oct 2008 02:40:31 +0000</pubDate>
<dc:creator>yourlifetimeagent</dc:creator>
<guid>http://yourlifetimeagent.da.wordpress.com/2008/10/10/beaverton-oregon-home-sales-sorrento-ridge-neighborhood-10102008/</guid>
<description><![CDATA[The Sorrento Ridge neighborhood of Beaverton, Oregon goes east from Murray to Hall Blvd and then Sou]]></description>
<content:encoded><![CDATA[<p>The Sorrento Ridge neighborhood of <a target="_blank" href="http://www.ifoundyournewhome.com/Beaverton__Aloha_Homes/page_1771645.html" title="City of Beaverton - History">Beaverton, Oregon</a> goes east from Murray to Hall Blvd and then South from Hart Road to Brockman/Greenway Road. Hyland Forest park is the only park in the neighborhood.</p>
<p><a target="_blank" href="http://maps.google.com/maps/ms?ie=UTF8&#38;hl=en&#38;msa=0&#38;ll=45.460672,-122.806463&#38;spn=0.022696,0.069094&#38;z=14&#38;om=1&#38;msid=107286649515521687082.000441ee31053305da490"><img width="381" src="http://i162.photobucket.com/albums/t241/YourLifetimeAgent/website/Sorrento%20Ridge%20Neighborhood/SorrentoRidgeNeighborhoodGoogleMap.jpg" alt="Sorrento Ridge Neighborhood" height="316" /></a><br />
<a target="_blank" href="http://maps.google.com/maps/ms?ie=UTF8&#38;hl=en&#38;msa=0&#38;ll=45.460672,-122.806463&#38;spn=0.022696,0.069094&#38;z=14&#38;om=1&#38;msid=107286649515521687082.000441ee31053305da490">View Larger Map</a></p>
<p>As of 10/10/2008 here are the stats for the Sorrento Ridge Neighborhood. This week I’ve changed the stats to only count the sales from the last 7 days to give a better reflection of what is going on in the neighborhood during any given week.</p>
<table border="1" width="350" cellPadding="2" cellSpacing="0">
<tr>
<td><strong>Total number of homes for sale:</strong></td>
<td align="right">67</td>
</tr>
<tr>
<td>Average List Price:</td>
<td align="right">$318,980</td>
</tr>
<tr>
<td>Average Days on Market:</td>
<td align="right">94</td>
</tr>
</table>
<p><br></p>
<table border="1" width="350" cellPadding="2" cellSpacing="0">
<tr>
<td><strong>Total Pending home sales:            </strong></td>
<td align="right">7</td>
</tr>
<tr>
<td>Average List Price:</td>
<td align="right">$332,393</td>
</tr>
<tr>
<td>Average Days on Market:</td>
<td align="right">109</td>
</tr>
</table>
<p><br></p>
<table border="1" width="350" cellPadding="2" cellSpacing="0">
<tr>
<td><b>Total Expired Home Sales Last 7 days         </b></td>
<td align="right">2</td>
</tr>
<tr>
<td>Average List Price:</td>
<td align="right">$402,450</td>
</tr>
<tr>
<td>Average Days on Market:</td>
<td align="right">156</td>
</tr>
</table>
<p><br></p>
<table border="1" width="350" cellPadding="2" cellSpacing="0">
<tr>
<td><strong>Total Sold in the last 30 days:        </strong></td>
<td align="right">0</td>
</tr>
<tr>
<td>Average List Price:</td>
<td align="right">$000,000</td>
</tr>
<tr>
<td>Average Sold Price:</td>
<td align="right">$000,000</td>
</tr>
<tr>
<td>Average Days on Market:</td>
<td align="right">0</td>
</tr>
</table>
<p><br></p>
<p><strong><a target="_blank" href="http://www.ifoundyournewhome.com/Sorrento_Ridge_Neighborhood_Beaverton_Oregon/page_1983310.html">Click here to view the last few weekly reports and the averages since I started keeping stats</a></strong></p>
<p>For a complete list of homes for sale in the Sorrento Ridge Neighborhood, please call or <a href="mailto:Todd@IFoundYourNewHome.com?subject=I would like to request the listings in the Sorrento Ridge Neighborhood of Beaverton">Click here</a>, to request an update.</p>
<p>If you are interested in selling your home for top dollar in the quickest amount of time, please contact me anytime at 503-524-9494 or <a href="mailto:Todd@IFoundYourNewHome.com?subject=I would like to request the listings in the Sorrento Ridge Neighborhood of Beaverton">Click here</a> to send me an e-mail requesting further information.</p>
<p><img width="112" src="http://activerain.com/image_store/uploads/8/6/4/6/2/ar119640485226468.jpg" alt=" " height="40" /></p>
<p>Todd Clark - broker<br />
Kastings &#38; Associates<br />
Phone: (503)524-9494<br />
Fax: (503)622-8739</p>
<p><a target="_blank" href="mailto:Todd@IFoundYourNewHome.com?subject=Contact from your blog"><img width="75" src="http://activerain.com/image_store/uploads/1/8/1/5/3/ar120041612435181.png" alt=" " height="32" /></a> <a target="_blank" href="http://www.ifoundyournewhome.com/MLS_Search/page_1974098.html"><img width="85" src="http://activerain.com/image_store/uploads/8/6/8/1/0/ar120041617301868.png" alt=" " height="31" /></a> <a target="_blank" href="http://www.ifoundyournewhome.com/"><img width="75" src="http://activerain.com/image_store/uploads/1/2/4/7/8/ar120041623687421.png" alt=" " height="31" /></a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Beaverton, Oregon homes sales (Sexton Mountain Neighborhood) (10/10/2008)]]></title>
<link>http://yourlifetimeagent.wordpress.com/?p=802</link>
<pubDate>Sat, 11 Oct 2008 02:39:30 +0000</pubDate>
<dc:creator>yourlifetimeagent</dc:creator>
<guid>http://yourlifetimeagent.da.wordpress.com/2008/10/10/beaverton-oregon-homes-sales-sexton-mountain-neighborhood-10102008/</guid>
<description><![CDATA[The Sexton Mountain neighborhood of Beaverton, Oregon goes East, starting at 175th to Murray Blvd, t]]></description>
<content:encoded><![CDATA[<p>The Sexton Mountain neighborhood of <a href="http://www.ifoundyournewhome.com/More_about_Beaverton_Oregon/page_1840510.html">Beaverton, Oregon</a> goes East, starting at 175th to Murray Blvd, then South from Hart Rd to Weir Rd. This area features many wonderful parks including Summcrest Park, Heartwoods Park, Beacon Hill Park, Carolwood Park and Sexton Mountain Meadows Park.</p>
<p><a target="_blank" href="http://maps.google.com/maps/ms?ie=UTF8&#38;hl=en&#38;msa=0&#38;msid=107286649515521687082.00044138d9e5ff96398bb&#38;z=14&#38;om=1"><img width="424" src="http://activerain.com/image_store/uploads/4/6/2/4/6/ar119886602164264.jpg" alt="Sexton Mountain Neighborhood, Beaverton, Oregon" height="348" style="width:377px;height:320px;" /><br />
</a><a target="_blank" href="http://maps.google.com/maps/ms?ie=UTF8&#38;hl=en&#38;msa=0&#38;msid=107286649515521687082.00044138d9e5ff96398bb&#38;z=14&#38;om=1">View Larger Map</a></p>
<p>As of 10/10/2008 here are the stats for the Sexton Mountain Neighborhood. This week I’ve changed the stats to only count the sales from the last 7 days to give a better reflection of what is going on in the neighborhood during any given week.</p>
<table border="1" width="350" cellPadding="2" cellSpacing="0">
<tr>
<td><strong>Total number of homes for sale:</strong></td>
<td align="right">133</td>
</tr>
<tr>
<td>Average List Price:</td>
<td align="right">$440,093</td>
</tr>
<tr>
<td>Average Days on Market:</td>
<td align="right">88</td>
</tr>
</table>
<p><br></p>
<table border="1" width="350" cellPadding="2" cellSpacing="0">
<tr>
<td><strong>Total Pending home sales:            </strong></td>
<td align="right">13</td>
</tr>
<tr>
<td>Average List Price:</td>
<td align="right">$638,581</td>
</tr>
<tr>
<td>Average Days on Market:</td>
<td align="right">103</td>
</tr>
</table>
<p><br></p>
<table border="1" width="350" cellPadding="2" cellSpacing="0">
<tr>
<td><b>Total Expired Home Sales Last 7 days         </b></td>
<td align="right">1</td>
</tr>
<tr>
<td>Average List Price:</td>
<td align="right">$319,900</td>
</tr>
<tr>
<td>Average Days on Market:</td>
<td align="right">183</td>
</tr>
</table>
<p><br></p>
<table border="1" width="350" cellPadding="2" cellSpacing="0">
<tr>
<td><strong>Total Sold in the last 30 days:        </strong></td>
<td align="right">5</td>
</tr>
<tr>
<td>Average List Price:</td>
<td align="right">$352,560</td>
</tr>
<tr>
<td>Average Sold Price:</td>
<td align="right">$349,660</td>
</tr>
<tr>
<td>Average Days on Market:</td>
<td align="right">51</td>
</tr>
</table>
<p><br></p>
<p><strong><a target="_blank" href="http://www.ifoundyournewhome.com/Sexton_Mountain_Neighborhood_Beaverton_Oregon/page_1983249.html">Click here to view the last few weekly reports and the averages since I started keeping stats</a></strong></p>
<p>For a complete list of homes for sale in the Sexton Mountain Neighborhood, please call or <a href="mailto:Todd@IFoundYourNewHome.com?subject=I would like to get an daily update of homes available in the Sexton Mountain area.">Click Here</a>, to request an update.</p>
<p>If you are interested in selling your home for top dollar in the quickest amount of time, please contact me anytime at 503-524-9494 or <a href="mailto:Todd@IFoundYourNewHome.com?subject=I would like to get an daily update of homes available in the Sexton Mountain area.">Click Here</a> to send me an e-mail requesting further information.</p>
<p><img width="112" src="http://activerain.com/image_store/uploads/8/6/4/6/2/ar119640485226468.jpg" alt=" " height="40" /></p>
<p>Todd Clark - broker<br />
Kastings &#38; Associates<br />
Phone: (503)524-9494<br />
Fax: (503)622-8739</p>
<p><a target="_blank" href="mailto:Todd@IFoundYourNewHome.com?subject=Contact from your blog"><img width="75" src="http://activerain.com/image_store/uploads/1/8/1/5/3/ar120041612435181.png" alt=" " height="32" /></a> <a target="_blank" href="http://www.ifoundyournewhome.com/MLS_Search/page_1974098.html"><img width="85" src="http://activerain.com/image_store/uploads/8/6/8/1/0/ar120041617301868.png" alt=" " height="31" /></a> <a target="_blank" href="http://www.ifoundyournewhome.com/"><img width="75" src="http://activerain.com/image_store/uploads/1/2/4/7/8/ar120041623687421.png" alt=" " height="31" /></a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Beaverton, Oregon homes sales (Murrayhill Neighborhood) (10/10/2008)]]></title>
<link>http://yourlifetimeagent.wordpress.com/?p=800</link>
<pubDate>Sat, 11 Oct 2008 02:38:18 +0000</pubDate>
<dc:creator>yourlifetimeagent</dc:creator>
<guid>http://yourlifetimeagent.da.wordpress.com/2008/10/10/beaverton-oregon-homes-sales-murrayhill-neighborhood-10102008/</guid>
<description><![CDATA[The Murrayhill neighborhood of Beaverton, Oregon goes East, starting at 175th to Murray Blvd, then S]]></description>
<content:encoded><![CDATA[<p>The Murrayhill neighborhood of <a href="http://www.ifoundyournewhome.com/More_about_Beaverton_Oregon/page_1840510.html">Beaverton, Oregon</a> goes East, starting at 175th to Murray Blvd, then South from Weir Rd to Scholls Ferry Rd. This area features Murray Hill Park that stretches from the North border all the way to the southern most boarder of the neighborhood.</p>
<p><a target="_blank" href="http://maps.google.com/maps/ms?ie=UTF8&#38;hl=en&#38;msa=0&#38;msid=107286649515521687082.00044124aa5a2e00076e7&#38;ll=45.437972,-122.836761&#38;spn=0.04541,0.138187&#38;z=13&#38;om=1"><img width="427" src="http://activerain.com/image_store/uploads/6/5/0/9/7/ar119886623879056.jpg" alt="Murray Hill Neighborhood, Beaverton, Oregon" height="346" style="width:375px;height:317px;" /></a><br />
<a target="_blank" href="http://maps.google.com/maps/ms?ie=UTF8&#38;hl=en&#38;msa=0&#38;msid=107286649515521687082.00044124aa5a2e00076e7&#38;ll=45.437972,-122.836761&#38;spn=0.04541,0.138187&#38;z=13&#38;om=1">View Larger Map</a></p>
<p>As of 10/10/2008 here are the stats for the Murrayhill Neighborhood. This week I’ve changed the stats to only count the sales from the last 7 days to give a better reflection of what is going on in the neighborhood during any given week.</p>
<table border="1" width="350" cellPadding="2" cellSpacing="0">
<tr>
<td><strong>Total number of homes for sale:</strong></td>
<td align="right">115</td>
</tr>
<tr>
<td>Average List Price:</td>
<td align="right">$385,067</td>
</tr>
<tr>
<td>Average Days on Market:</td>
<p>&#60;td align="right"104</td>
</tr>
</table>
<p><br></p>
<table border="1" width="350" cellPadding="2" cellSpacing="0">
<tr>
<td><strong>Total Pending home sales:            </strong></td>
<td align="right">25</td>
</tr>
<tr>
<td>Average List Price:</td>
<td align="right">$328,935</td>
</tr>
<tr>
<td>Average Days on Market:</td>
<td align="right">67</td>
</tr>
</table>
<p><br></p>
<table border="1" width="350" cellPadding="2" cellSpacing="0">
<tr>
<td><b>Total Expired Home Sales Last 7 days         </b></td>
<td align="right">5</td>
</tr>
<tr>
<td>Average List Price:</td>
<td align="right">     $404,740</td>
</tr>
<tr>
<td>Average Days on Market:</td>
<td align="right">131</td>
</tr>
</table>
<p><br></p>
<table border="1" width="350" cellPadding="2" cellSpacing="0">
<tr>
<td><strong>Total Sold in the last 30 days:        </strong></td>
<td align="right">2</td>
</tr>
<tr>
<td>Average List Price:</td>
<td align="right">$249,950</td>
</tr>
<tr>
<td>Average Sold Price:</td>
<td align="right">$249,950</td>
</tr>
<tr>
<td>Average Days on Market:</td>
<td align="right">34</td>
</tr>
</table>
<p><br></p>
<p><strong><a target="_blank" href="http://www.ifoundyournewhome.com/Murray_Hill_Neighborhood_Beaverton_Oregon/page_1983178.html">Click here to view the last few weekly reports and the averages since I started keeping stats</a></strong></p>
<p>For a complete list of homes for sale in the Murrayhill neighborhood, please call or <a target="_blank" href="http://www.ifoundyournewhome.com/Contact_Me/page_1762758.html">click here</a>, to request an update.</p>
<p>If you are interested in selling your home for top dollar in the quickest amount of time, please contact me anytime at 503-524-9494 or <a target="_blank" href="http://www.ifoundyournewhome.com/Contact_Me/page_1762758.html">click here</a> to send me an e-mail requesting further information.</p>
<p><img width="112" src="http://activerain.com/image_store/uploads/8/6/4/6/2/ar119640485226468.jpg" alt=" " height="40" /></p>
<p>Todd Clark - broker<br />
Kastings &#38; Associates<br />
Phone: (503)524-9494<br />
Fax: (503)622-8739</p>
<p><a target="_blank" href="mailto:Todd@IFoundYourNewHome.com?subject=Contact from your blog"><img width="75" src="http://activerain.com/image_store/uploads/1/8/1/5/3/ar120041612435181.png" alt=" " height="32" /></a> <a target="_blank" href="http://www.ifoundyournewhome.com/MLS_Search/page_1974098.html"><img width="85" src="http://activerain.com/image_store/uploads/8/6/8/1/0/ar120041617301868.png" alt=" " height="31" /></a> <a target="_blank" href="http://www.ifoundyournewhome.com/"><img width="75" src="http://activerain.com/image_store/uploads/1/2/4/7/8/ar120041623687421.png" alt=" " height="31" /></a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Tigard, Oregon home sales (Mountainview Neighborhood) (10/10/2008)]]></title>
<link>http://yourlifetimeagent.wordpress.com/?p=798</link>
<pubDate>Sat, 11 Oct 2008 02:36:07 +0000</pubDate>
<dc:creator>yourlifetimeagent</dc:creator>
<guid>http://yourlifetimeagent.da.wordpress.com/2008/10/10/tigard-oregon-home-sales-mountainview-neighborhood-10102008/</guid>
<description><![CDATA[The Mountainview neighborhood of Tigard, Oregon goes South from McDonald to Durham Road, East from P]]></description>
<content:encoded><![CDATA[<p>The Mountainview neighborhood of <a target="_blank" href="http://www.ifoundyournewhome.com/More_About_Tigard/page_1838442.html" title="City of Tigard - History">Tigard, Oregon</a> goes South from McDonald to Durham Road, East from Pacific Hwy to Hall Blvd, with the exception of the summerfield area in the southwest corner which is a 55 plus community. This part of <a target="_blank" href="http://www.ifoundyournewhome.com/More_About_Tigard/page_1838442.html" title="City of Tigard - History">Tigard, Oregon</a> has no parks, but does have a couple schools with great playgrounds in them.</p>
<p><a target="_blank" href="http://maps.google.com/maps/ms?ie=UTF8&#38;hl=en&#38;msa=0&#38;msid=107286649515521687082.000441627ba8c0a052a37&#38;z=14&#38;om=1"><img width="426" src="http://activerain.com/image_store/uploads/7/8/9/3/3/ar119799963233987.jpg" alt="Mountainview Neighborhood Map, Tigard, Oregon" height="350" style="width:375px;height:326px;" /></a><br />
<a target="_blank" href="http://maps.google.com/maps/ms?ie=UTF8&#38;hl=en&#38;msa=0&#38;msid=107286649515521687082.000441627ba8c0a052a37&#38;z=14&#38;om=1">View larger map</a></p>
<p>As of 10/10/2008 here are the stats for the Mountainview Neighborhood</p>
<table border="1" width="350" cellPadding="2" cellSpacing="0">
<tr>
<td><strong>Total number of homes for sale:</strong></td>
<td align="right">132</td>
</tr>
<tr>
<td>Average List Price:</td>
<td align="right">$334,707</td>
</tr>
<tr>
<td>Average Days on Market:</td>
<td align="right">92</td>
</tr>
</table>
<p><br></p>
<table border="1" width="350" cellPadding="2" cellSpacing="0">
<tr>
<td><strong>Total Pending home sales:            </strong></td>
<td align="right">25</td>
</tr>
<tr>
<td>Average List Price:</td>
<td align="right">$247,997</td>
</tr>
<tr>
<td>Average Days on Market:</td>
<td align="right">61</td>
</tr>
</table>
<p><br></p>
<table border="1" width="350" cellPadding="2" cellSpacing="0">
<tr>
<td><b>Total Expired Home Sales Last 7 days         </b></td>
<td align="right">3</td>
</tr>
<tr>
<td>Average List Price:</td>
<td align="right">     $312,667</td>
</tr>
<tr>
<td>Average Days on Market:</td>
<td align="right">73</td>
</tr>
</table>
<p><br></p>
<table border="1" width="350" cellPadding="2" cellSpacing="0">
<tr>
<td><strong>Total Sold in the last 30 days:        </strong></td>
<td align="right">0</td>
</tr>
<tr>
<td>Average List Price:</td>
<td align="right">$000,000</td>
</tr>
<tr>
<td>Average Sold Price:</td>
<td align="right">$000,000</td>
</tr>
<tr>
<td>Average Days on Market:</td>
<td align="right">0</td>
</tr>
</table>
<p><br></p>
<p><strong><a target="_blank" href="http://www.ifoundyournewhome.com/Mountainview_Nieghborhood_Tigard_Oregon/page_1983168.html">Click here to view the last few weekly reports and the averages since I started keeping stats</a></strong></p>
<p>For a complete list of homes for sale in the Mountainview Neighborhood, please call or <a href="mailto:Todd@IFoundYourNewHome.com?subject=I would like to request the listings in the Mountainview Neighborhood of Tigard">Click here</a>, to request an update.</p>
<p>If you are interested in selling your home for top dollar in the quickest amount of time, please contact me anytime at 503-524-9494 or <a href="mailto:Todd@IFoundYourNewHome.com?subject=I would like to request the listings in the Mountainview Neighborhood of Tigard">Click here</a> to send me an e-mail requesting further information.</p>
<p><img width="112" src="http://activerain.com/image_store/uploads/8/6/4/6/2/ar119640485226468.jpg" alt=" " height="40" /></p>
<p>Todd Clark - broker<br />
Kastings &#38; Associates<br />
Phone: (503)524-9494<br />
Fax: (503)622-8739</p>
<p><a target="_blank" href="mailto:Todd@IFoundYourNewHome.com?subject=Contact from your blog"><img width="75" src="http://activerain.com/image_store/uploads/1/8/1/5/3/ar120041612435181.png" alt=" " height="32" /></a> <a target="_blank" href="http://www.ifoundyournewhome.com/MLS_Search/page_1974098.html"><img width="85" src="http://activerain.com/image_store/uploads/8/6/8/1/0/ar120041617301868.png" alt=" " height="31" /></a> <a target="_blank" href="http://www.ifoundyournewhome.com/"><img width="75" src="http://activerain.com/image_store/uploads/1/2/4/7/8/ar120041623687421.png" alt=" " height="31" /></a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Beaverton, Oregon home sales (Lexington Neighborhood) (10/10/2008)]]></title>
<link>http://yourlifetimeagent.wordpress.com/?p=796</link>
<pubDate>Sat, 11 Oct 2008 02:34:50 +0000</pubDate>
<dc:creator>yourlifetimeagent</dc:creator>
<guid>http://yourlifetimeagent.da.wordpress.com/2008/10/10/beaverton-oregon-home-sales-lexington-neighborhood-10102008/</guid>
<description><![CDATA[The Lexington neighborhood of Aloha, Oregon goes East, starting at Brookwood Ave, then South from Ba]]></description>
<content:encoded><![CDATA[<p>The Lexington neighborhood of <a target="_blank" href="http://www.ifoundyournewhome.com/Beaverton__Aloha_Homes/page_1771645.html">Aloha</a>, <a target="_blank" href="http://www.ifoundyournewhome.com/Beaverton__Aloha_Homes/page_1771645.html">Oregon</a> goes East, starting at Brookwood Ave, then South from Baseline Rd to TV HWY. Then the area around the Reserve Vineyards Golf Club. This area features many wonderful parks Paula Jean park, Trachsel Meadows park, Whispering Way park, Arleda park and Willow Creek park.</p>
<p><a target="_blank" href="http://maps.google.com/maps/ms?ie=UTF8&#38;hl=en&#38;msa=0&#38;msid=107286649515521687082.00044158b24eadc435c83&#38;om=1&#38;ll=45.49494,-122.902035&#38;spn=0.084231,0.146255&#38;z=12&#38;source=embed"><img width="423" src="http://activerain.com/image_store/uploads/9/8/0/8/0/ar119886521608089.jpg" alt="Lexington Neighborhood, Aloha, Oregon" height="348" style="width:373px;height:321px;" /></a><br />
<a target="_blank" href="http://maps.google.com/maps/ms?ie=UTF8&#38;hl=en&#38;msa=0&#38;msid=107286649515521687082.00044158b24eadc435c83&#38;om=1&#38;ll=45.49494,-122.902035&#38;spn=0.084231,0.146255&#38;z=12&#38;source=embed">View Larger Map</a></p>
<p>As of 10/10/2008 here are the stats for the Lexington Neighborhood. This week I’ve changed the stats to only count the sales from the last 7 days to give a better reflection of what is going on in the neighborhood during any given week.</p>
<table border="1" width="350" cellPadding="2" cellSpacing="0">
<tr>
<td><strong>Total number of homes for sale:</strong></td>
<td align="right">44</td>
</tr>
<tr>
<td>Average List Price:</td>
<td align="right">$267,092</td>
</tr>
<tr>
<td>Average Days on Market:</td>
<td align="right">124</td>
</tr>
</table>
<p><br></p>
<table border="1" width="350" cellPadding="2" cellSpacing="0">
<tr>
<td><strong>Total Pending home sales:            </strong></td>
<td align="right">11</td>
</tr>
<tr>
<td>Average List Price:</td>
<td align="right">$220,750</td>
</tr>
<tr>
<td>Average Days on Market:</td>
<td align="right">60</td>
</tr>
</table>
<p></P>
<p><br></p>
<table border="1" width="350" cellPadding="2" cellSpacing="0">
<tr>
<td><b>Total Expired Home Sales Last 7 days         </b></td>
<td align="right">1</td>
</tr>
<tr>
<td>Average List Price:</td>
<td align="right">     $379,900</td>
</tr>
<tr>
<td>Average Days on Market:</td>
<td align="right">183</td>
</tr>
</table>
<p><br></p>
<table border="1" width="350" cellPadding="2" cellSpacing="0">
<tr>
<td><strong>Total Sold in the last 30 days:       </strong></td>
<td align="right">0</td>
</tr>
<tr>
<td>Average List Price:</td>
<td align="right">$000,000</td>
</tr>
<tr>
<td>Average Sold Price:</td>
<td align="right">$000,000</td>
</tr>
<tr>
<td>Average Days on Market:</td>
<td align="right">0</td>
</tr>
</table>
<p><strong><a target="_blank" href="http://www.ifoundyournewhome.com/Lexington_Neighborhood_Aloha_Oregon/page_1983159.html">Click here to view the last few weekly reports and the averages since I started keeping stats</a></strong></p>
<p>For a complete list of homes for sale in the Lexington Neighborhood, please call or <a href="mailto:Todd@IFoundYourNewHome.com?subject=I would like to get a daily update of homes that are new in the market in the Lexington neighborhood">Click here</a>, to request an update.</p>
<p>If you are interested in selling your home for top dollar in the quickest amount of time, please contact me anytime at 503-524-9494 or <a href="mailto:Todd@IFoundYourNewHome.com?subject=I would like to get a daily update of homes that are new in the market in the Lexington neighborhood">Click here</a> to send me an e-mail requesting further information.</p>
<p><img width="112" src="http://activerain.com/image_store/uploads/8/6/4/6/2/ar119640485226468.jpg" alt=" " height="40" /></p>
<p>Todd Clark - broker<br />
Kastings &#38; Associates<br />
Phone: (503)524-9494<br />
Fax: (503)622-8739</p>
<p><a target="_blank" href="mailto:Todd@IFoundYourNewHome.com?subject=Contact from your blog"><img width="75" src="http://activerain.com/image_store/uploads/1/8/1/5/3/ar120041612435181.png" alt=" " height="32" /></a> <a target="_blank" href="http://www.ifoundyournewhome.com/MLS_Search/page_1974098.html"><img width="85" src="http://activerain.com/image_store/uploads/8/6/8/1/0/ar120041617301868.png" alt=" " height="31" /></a> <a target="_blank" href="http://www.ifoundyournewhome.com/"><img width="75" src="http://activerain.com/image_store/uploads/1/2/4/7/8/ar120041623687421.png" alt=" " height="31" /></a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Beaverton, Oregon home sales (Highland Hills Neighborhood) (10/10/2008)]]></title>
<link>http://yourlifetimeagent.wordpress.com/?p=794</link>
<pubDate>Sat, 11 Oct 2008 02:34:00 +0000</pubDate>
<dc:creator>yourlifetimeagent</dc:creator>
<guid>http://yourlifetimeagent.da.wordpress.com/2008/10/10/beaverton-oregon-home-sales-highland-hills-neighborhood-10102008/</guid>
<description><![CDATA[The Highland Hills neighborhood of Beaverton, Oregon goes east from Murray to Hall Blvd and then Sou]]></description>
<content:encoded><![CDATA[<p>The Highland Hills neighborhood of <a target="_blank" href="http://www.ifoundyournewhome.com/Beaverton__Aloha_Homes/page_1771645.html" title="City of Beaverton - History">Beaverton, Oregon</a> goes east from Murray to Hall Blvd and then South from Allen Blvd to Hart Road. The Highland Hills neighborhood features two parks, Channing Heights park and Fir Grove park for everyone to enjoy.</p>
<p><a target="_blank" href="http://maps.google.com/maps/ms?f=q&#38;ie=UTF8&#38;hl=en&#38;msa=0&#38;ll=45.471869,-122.815561&#38;spn=0.022691,0.069094&#38;z=14&#38;om=1&#38;msid=107286649515521687082.000442020c1b609f7eeeb"><img width="364" src="http://i162.photobucket.com/albums/t241/YourLifetimeAgent/Highland%20Hills%20Neighborhood/HighlandHillsNeighborhoodGoogleMap.jpg" alt="Highland Hills Neighborhood" height="311" /></a><br />
<a target="_blank" href="http://maps.google.com/maps/ms?f=q&#38;ie=UTF8&#38;hl=en&#38;msa=0&#38;ll=45.471869,-122.815561&#38;spn=0.022691,0.069094&#38;z=14&#38;om=1&#38;msid=107286649515521687082.000442020c1b609f7eeeb">View Larger Map</a></p>
<p>As of 10/10/2008 here are the stats for the Highland Hills Neighborhood. This week I’ve changed the stats to only count the sales from the last 7 days to give a better reflection of what is going on in the neighborhood during any given week.</p>
<table border="1" width="350" cellPadding="2" cellSpacing="0">
<tr>
<td><strong>Total number of homes for sale:</strong></td>
<td align="right">64</td>
</tr>
<tr>
<td>Average List Price:</td>
<td align="right">$297,487</td>
</tr>
<tr>
<td>Average Days on Market:</td>
<td align="right">92</td>
</tr>
</table>
<p><br></p>
<table border="1" width="350" cellPadding="2" cellSpacing="0">
<tr>
<td><strong>Total Pending home sales:            </strong></td>
<td align="right">12</td>
</tr>
<tr>
<td>Average List Price:</td>
<td align="right">$287,938</td>
</tr>
<tr>
<td>Average Days on Market:</td>
<td align="right">75</td>
</tr>
</table>
<p><BR></p>
<table border="1" width="350" cellPadding="2" cellSpacing="0">
<tr>
<td><b>Total Expired Home Sales Last 7 days         </b></td>
<td align="right">2</td>
</tr>
<tr>
<td>Average List Price:</td>
<td align="right">     $402,450</td>
</tr>
<tr>
<td>Average Days on Market:</td>
<td align="right">156</td>
</tr>
</table>
<p><br></p>
<table border="1" width="350" cellPadding="2" cellSpacing="0">
<tr>
<td><strong>Total Sold in the last 30 days:       </strong></td>
<td align="right">2</td>
</tr>
<tr>
<td>Average List Price:</td>
<td align="right">$248,950</td>
</tr>
<tr>
<td>Average Sold Price:</td>
<td align="right">$227,750</td>
</tr>
<tr>
<td>Average Days on Market:</td>
<td align="right">67</td>
</tr>
</table>
<p><strong><a target="_blank" href="http://www.ifoundyournewhome.com/Highland_Hills_Neighborhood_Beaverton_Oregon/page_1982987.html">Click here to view the last few weekly reports and the averages since I started keeping stats</a></strong></p>
<p>For a complete list of homes for sale in the Highland Hills Neighborhood, please call or <a href="mailto:Todd@IFoundYourNewHome.com?subject=I would like to request the listings in the Highland Hills Neighborhood of Beaverton">Click here</a>, to request an update.</p>
<p>If you are interested in selling your home for top dollar in the quickest amount of time, please contact me anytime at 503-524-9494 or <a href="mailto:Todd@IFoundYourNewHome.com?subject=I would like to request the listings in the Highland Hills Neighborhood of Beaverton">Click here</a> to send me an e-mail requesting further information.</p>
<p><img width="112" src="http://activerain.com/image_store/uploads/8/6/4/6/2/ar119640485226468.jpg" alt=" " height="40" /></p>
<p>Todd Clark - broker<br />
Kastings &#38; Associates<br />
Phone: (503)524-9494<br />
Fax: (503)622-8739</p>
<p><a target="_blank" href="mailto:Todd@IFoundYourNewHome.com?subject=Contact from your blog"><img width="75" src="http://activerain.com/image_store/uploads/1/8/1/5/3/ar120041612435181.png" alt=" " height="32" /></a> <a target="_blank" href="http://www.ifoundyournewhome.com/MLS_Search/page_1974098.html"><img width="85" src="http://activerain.com/image_store/uploads/8/6/8/1/0/ar120041617301868.png" alt=" " height="31" /></a> <a target="_blank" href="http://www.ifoundyournewhome.com/"><img width="75" src="http://activerain.com/image_store/uploads/1/2/4/7/8/ar120041623687421.png" alt=" " height="31" /></a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Beaverton, Oregon home sales (Hart Neighborhood) (10/10/2008)]]></title>
<link>http://yourlifetimeagent.wordpress.com/?p=791</link>
<pubDate>Sat, 11 Oct 2008 02:32:52 +0000</pubDate>
<dc:creator>yourlifetimeagent</dc:creator>
<guid>http://yourlifetimeagent.da.wordpress.com/2008/10/10/beaverton-oregon-home-sales-hart-neighborhood-10102008/</guid>
<description><![CDATA[The Hart neighborhood of Beaverton, Oregon goes east 170th to Murray Blvd, the South from Farmington]]></description>
<content:encoded><![CDATA[<p>The Hart neighborhood of <a target="_blank" href="http://www.ifoundyournewhome.com/Beaverton__Aloha_Homes/page_1771645.html" title="City of Beaverton - History"><font color="#ff3333">Beaverton, Oregon</font></a> goes east 170th to Murray Blvd, the South from Farmington to Hart Road. The Hart neighborhood has many great parks like Schuepbach Park, Brookhaven Park, Hartwood Park, Summercrest East Park and Tallac Terrace Park.</p>
<p><a target="_blank" href="http://maps.google.com/maps/ms?ie=UTF8&#38;hl=en&#38;msa=0&#38;ll=45.476383,-122.826033&#38;spn=0.02269,0.069094&#38;z=14&#38;om=1&#38;msid=107286649515521687082.000441b1477f13b7e13bb"><img width="380" src="http://i162.photobucket.com/albums/t241/YourLifetimeAgent/website/Hart%20Nieghborhood/HartNeighborhoodGoogleMap.jpg" alt="Hart Neighborhood" height="321" /></a><br />
<a target="_blank" href="http://maps.google.com/maps/ms?ie=UTF8&#38;hl=en&#38;msa=0&#38;ll=45.464947,-122.869978&#38;spn=0.045388,0.138187&#38;z=13&#38;om=1&#38;msid=107286649515521687082.000441934f0a96f60d82f"><font color="#ff3333">View Larger Map</font></a></p>
<p>As of 10/10/2008 here are the stats for the Hart Neighborhood. This week I’ve changed the stats to only count the sales from the last 7 days to give a better reflection of what is going on in the neighborhood during any given week.</p>
<table border="1" width="350" cellPadding="2" cellSpacing="0">
<tr>
<td><strong>Total number of homes for sale:</strong></td>
<td align="right">101</td>
</tr>
<tr>
<td>Average List Price:</td>
<td align="right">$312,654</td>
</tr>
<tr>
<td>Average Days on Market:</td>
<td align="right">79</td>
</tr>
</table>
<p><br></p>
<table border="1" width="350" cellPadding="2" cellSpacing="0">
<tr>
<td><strong>Total Pending home sales: </strong></td>
<td align="right">13</td>
</tr>
<tr>
<td>Average List Price:</td>
<td align="right">$252,958</td>
</tr>
<tr>
<td>Average Days on Market:</td>
<td align="right">39</td>
</tr>
</table>
<p><P><BR></p>
<table border="1" width="350" cellPadding="2" cellSpacing="0">
<tr>
<td><b>Total Expired Home Sales Last 7 days </b></td>
<td align="right">3</td>
</tr>
<tr>
<td>Average List Price:</td>
<td align="right">$366,567</td>
</tr>
<tr>
<td>Average Days on Market:</td>
<td align="right">154</td>
</tr>
</table>
<p><P><BR></p>
<table border="1" width="350" cellPadding="2" cellSpacing="0">
<tr>
<td><strong>Total Sold in the last 30 days: </strong></td>
<td align="right">3</td>
</tr>
<tr>
<td>Average List Price:</td>
<td align="right">$333,267</td>
</tr>
<tr>
<td>Average Sold Price:</td>
<td align="right">$319,300</td>
</tr>
<tr>
<td>Average Days on Market:</td>
<td align="right">26</td>
</tr>
</table>
<p><strong><a target="_blank" href="http://www.ifoundyournewhome.com/Hart_Neighborhood_Beaverton_Oregon/page_1983025.html"><font color="#ff3333">Click here to view the last few weekly reports and the averages since I started keeping stats</font></a></strong> </p>
<p>For a complete list of homes for sale in the Mountainview Neighborhood, please call or <a href="mailto:Todd@IFoundYourNewHome.com?subject=I would like to request the listings in the Hart Neighborhood of Beaverton"><font color="#ff3333">Click here</font></a>, to request an update.</p>
<p>If you are interested in selling your home for top dollar in the quickest amount of time, please contact me anytime at 503-524-9494 or <a href="mailto:Todd@IFoundYourNewHome.com?subject=I would like to request the listings in the Hart Neighborhood of Beaverton"><font color="#ff3333">Click here</font></a> to send me an e-mail requesting further information.</p>
<p><img width="112" src="http://activerain.com/image_store/uploads/8/6/4/6/2/ar119640485226468.jpg" alt=" " height="40" /></p>
<p>Todd Clark - broker<br />
Kastings &#38; Associates<br />
Phone: (503)524-9494<br />
Fax: (503)622-8739</p>
<p><a target="_blank" href="mailto:Todd@IFoundYourNewHome.com?subject=Contact from your blog"><img width="75" src="http://activerain.com/image_store/uploads/1/8/1/5/3/ar120041612435181.png" alt=" " height="32" /></a> <a target="_blank" href="http://www.ifoundyournewhome.com/MLS_Search/page_1974098.html"><img width="85" src="http://activerain.com/image_store/uploads/8/6/8/1/0/ar120041617301868.png" alt=" " height="31" /></a> <a target="_blank" href="http://www.ifoundyournewhome.com/"><img width="75" src="http://activerain.com/image_store/uploads/1/2/4/7/8/ar120041623687421.png" alt=" " height="31" /></a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Beaverton, Oregon home sales (Greenway Neighborhood) (10/10/2008)]]></title>
<link>http://yourlifetimeagent.wordpress.com/?p=789</link>
<pubDate>Fri, 10 Oct 2008 17:46:40 +0000</pubDate>
<dc:creator>yourlifetimeagent</dc:creator>
<guid>http://yourlifetimeagent.da.wordpress.com/2008/10/10/beaverton-oregon-home-sales-greenway-neighborhood-10102008/</guid>
<description><![CDATA[The greenway neighborhood of Beaverton, Oregon goes East, starting at Murray Blvd, to Hall Blvd, and]]></description>
<content:encoded><![CDATA[<p>The greenway neighborhood of <a href="http://www.ifoundyournewhome.com/More_about_Beaverton_Oregon/page_1840510.html"><font color="#ff3333">Beaverton, Oregon</font></a> goes East, starting at Murray Blvd, to Hall Blvd, and south, from Brockman/Greenway to Scholls Ferry Road. This area features Wildhorse Park, Buckskin Park, Forest Glen Park, <a target="_blank" href="http://activerain.com/blogsview/339127/Hiteon-Park-in-Beaverton"><font color="#ff3333">Hiteon Park</font></a> and the 85 + acre park, <a href="http://activerain.com/blogsview/229270/Greenway-Park-in-Beaverton"><font color="#ff3333">Greenway Park</font></a>.</p>
<p><a target="_blank" href="http://maps.google.com/maps/ms?ie=UTF8&#38;hl=en&#38;msa=0&#38;msid=107286649515521687082.00043e7c4f85174186017&#38;om=1&#38;ll=45.44833,-122.802601&#38;spn=0.04215,0.072956&#38;z=13&#38;source=embed"><img width="423" src="http://activerain.com/image_store/uploads/7/6/7/0/3/ar119708114530767.jpg" alt=" " height="346" style="width:390px;height:337px;" /></a><br />
<a target="_blank" href="http://maps.google.com/maps/ms?ie=UTF8&#38;hl=en&#38;msa=0&#38;msid=107286649515521687082.00043e7c4f85174186017&#38;om=1&#38;ll=45.44833,-122.802601&#38;spn=0.04215,0.072956&#38;z=13&#38;source=embed"><font color="#ff3300">Click here to go to Google Maps to get point to point directions</font></a></p>
<p>As of 10/10/2008 here are the stats for the Greenway Neighborhood. This week I’ve changed the stats to only count the sales from the last 7 days to give a better reflection of what is going on in the neighborhood during any given week.</p>
<table border="1" width="350" cellPadding="2" cellSpacing="0">
<tr>
<td><strong>Total number of homes for sale:</strong></td>
<td align="right">31</td>
</tr>
<tr>
<td>Average List Price:</td>
<td align="right">$256,716</td>
</tr>
<tr>
<td>Average Days on Market:</td>
<td align="right">97</td>
</tr>
</table>
<p><br></p>
<table border="1" width="350" cellPadding="2" cellSpacing="0">
<tr>
<td><strong>Total Pending home sales:            </strong></td>
<td align="right">8</td>
</tr>
<tr>
<td>Average List Price:</td>
<td align="right">$195,345</td>
</tr>
<tr>
<td>Average Days on Market:</td>
<td align="right">105</td>
</tr>
</table>
<p><BR></p>
<table border="1" width="350" cellPadding="2" cellSpacing="0">
<tr>
<td><b>Total Expired Home Sales Last 7 days         </b></td>
<td align="right">0</td>
</tr>
<tr>
<td>Average List Price:</td>
<td align="right">     $000,000</td>
</tr>
<tr>
<td>Average Days on Market:</td>
<td align="right">0</td>
</tr>
</table>
<p><br></p>
<table border="1" width="350" cellPadding="2" cellSpacing="0">
<tr>
<td><strong>Total Sold in the last 30 days:       </strong></td>
<td align="right">0</td>
</tr>
<tr>
<td>Average List Price:</td>
<td align="right">$000,000</td>
</tr>
<tr>
<td>Average Sold Price:</td>
<td align="right">$000,000</td>
</tr>
<tr>
<td>Average Days on Market:</td>
<td align="right">0</td>
</tr>
</table>
<p><strong><a target="_blank" href="http://www.ifoundyournewhome.com/Greenway_Neighborhood_Beaverton_Oregon/page_1986947.html"><font color="#ff3333">Click here to view the last few weekly reports and the averages since I started keeping stats</font></a></strong></p>
<p>For a complete list of homes for sale in the Greenway Neighborhood please call or <a href="mailto:Todd@IFoundYourNewHome.com?subject=Greenway Neighborhood"><font color="#ff3333">click here</font></a> to request a update of homes in the Greenway Neighborhood of <a href="http://www.ifoundyournewhome.com/More_about_Beaverton_Oregon/page_1840510.html"><font color="#ff3333">Beaverton, Oregon</font></a>.</p>
<p>If you are interested in selling your home for top dollar in the quickest amount of time, please contact me anytime at 503-524-9494 or <a href="mailto:Todd@IFoundYourNewHome.com?subject=I want to sell my Greenway Neighborhood home fast and for top dollar"><font color="#ff3333">click here</font></a> to send me an e-mail requesting further information.</p>
<p><img width="112" src="http://activerain.com/image_store/uploads/8/6/4/6/2/ar119640485226468.jpg" alt=" " height="40" /></p>
<p>Todd Clark - broker<br />
Kastings &#38; Associates<br />
Phone: (503)524-9494<br />
Fax: (503)622-8739</p>
<p><a target="_blank" href="mailto:Todd@IFoundYourNewHome.com?subject=Contact from your blog"><img width="75" src="http://activerain.com/image_store/uploads/1/8/1/5/3/ar120041612435181.png" alt=" " height="32" /></a> <a target="_blank" href="http://www.ifoundyournewhome.com/MLS_Search/page_1974098.html"><img width="85" src="http://activerain.com/image_store/uploads/8/6/8/1/0/ar120041617301868.png" alt=" " height="31" /></a> <a target="_blank" href="http://www.ifoundyournewhome.com/"><img width="75" src="http://activerain.com/image_store/uploads/1/2/4/7/8/ar120041623687421.png" alt=" " height="31" /></a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Tigard, Oregon homes sales (Greenburg Neighborhood) (10/10/2008)]]></title>
<link>http://yourlifetimeagent.wordpress.com/?p=787</link>
<pubDate>Fri, 10 Oct 2008 17:37:45 +0000</pubDate>
<dc:creator>yourlifetimeagent</dc:creator>
<guid>http://yourlifetimeagent.da.wordpress.com/2008/10/10/tigard-oregon-homes-sales-greenburg-neighborhood-10102008/</guid>
<description><![CDATA[The Greenburg neighborhood of Tigard, Oregon goes east, starting at 121stAve, to Hwy 217, and south,]]></description>
<content:encoded><![CDATA[<div class="snap_preview">The Greenburg neighborhood of <a target="_blank" href="http://www.ifoundyournewhome.com/More_About_Tigard/page_1838442.html" title="City of Tigard - History"><font color="#ff3333">Tigard, Oregon</font></a> goes east, starting at 121<sup>st</sup>Ave, to Hwy 217, and south, from Scholls Ferry to Pacific Highway (99w). This part of <a target="_blank" href="http://www.ifoundyournewhome.com/More_About_Tigard/page_1838442.html" title="City of Tigard - History"><font color="#ff3333">Tigard, Oregon</font></a> is partially in Tigard School district and partially in the Beaverton School District. The only park in this area of <a target="_blank" href="http://www.ifoundyournewhome.com/More_About_Tigard/page_1838442.html" title="City of Tigard - History"><font color="#ff3333">Tigard</font></a> is <a href="http://activerain.com/blogsview/229257/Englewood-Park-in-Tigard"><font color="#ff3333">Englewood Park</font></a> near Scholls Ferry road. However, it does connect to a much larger park on the <a href="http://www.ifoundyournewhome.com/More_about_Beaverton_Oregon/page_1840510.html"><font color="#ff3333">Beaverton</font></a> side of Scholls Ferry Road, called <a href="http://activerain.com/blogsview/229270/Greenway-Park-in-Beaverton"><font color="#ff3333">Greenway Park</font></a>.</p>
<p><a target="_blank" href="http://maps.google.com/maps/ms?ie=UTF8&#38;hl=en&#38;msa=0&#38;msid=107286649515521687082.00043e87dab03768c68fa&#38;z=13&#38;om=1"><img width="386" src="http://activerain.com/image_store/uploads/9/5/6/8/2/ar11988252628659.jpg" alt="Greenburg Neighborhood, Tigard, Oregon" height="318" /></a><br />
<a target="_blank" href="http://maps.google.com/maps/ms?ie=UTF8&#38;hl=en&#38;msa=0&#38;msid=107286649515521687082.00043e87dab03768c68fa&#38;z=13&#38;om=1"><font color="#ff3333">View Larger Map</font></a></p>
<p>As of 10/10/2008 here are the stats for the Greenburg Neighborhood. This week I’ve changed the stats to only count the sales from the last 7 days to give a better reflection of what is going on in the neighborhood during any given week.</p>
<table border="1" width="350" cellPadding="2" cellSpacing="0">
<tr>
<td><strong>Total number of homes for sale:</strong></td>
<td align="right">71</td>
</tr>
<tr>
<td>Average List Price:</td>
<td align="right">$322,535</td>
</tr>
<tr>
<td>Average Days on Market:</td>
<td align="right">98</td>
</tr>
</table>
<p><br></p>
<table border="1" width="350" cellPadding="2" cellSpacing="0">
<tr>
<td><strong>Total Pending home sales:            </strong></td>
<td align="right">14</td>
</tr>
<tr>
<td>Average List Price:</td>
<td align="right">$332,098</td>
</tr>
<tr>
<td>Average Days on Market:</td>
<td align="right">75</td>
</tr>
</table>
<p><BR></p>
<table border="1" width="350" cellPadding="2" cellSpacing="0">
<tr>
<td><b>Total Expired Home Sales Last 7 days         </b></td>
<td align="right">0</td>
</tr>
<tr>
<td>Average List Price:</td>
<td align="right">     $000,000</td>
</tr>
<tr>
<td>Average Days on Market:</td>
<td align="right">0</td>
</tr>
</table>
<p><br></p>
<table border="1" width="350" cellPadding="2" cellSpacing="0">
<tr>
<td><strong>Total Sold in the last 30 days:       </strong></td>
<td align="right">0</td>
</tr>
<tr>
<td>Average List Price:</td>
<td align="right">$00,000</td>
</tr>
<tr>
<td>Average Sold Price:</td>
<td align="right">$000,000</td>
</tr>
<tr>
<td>Average Days on Market:</td>
<td align="right">0</td>
</tr>
</table>
<p><strong><a target="_blank" href="http://www.ifoundyournewhome.com/Greenburg_Neighborhood_Tigard_Oregon/page_1982805.html"><font color="#ff3333">Click here to view the last few weekly reports and the averages since I started keeping stats</font></a></strong></p>
<p>For a complete list of homes for sale in the Greenburg Neighborhood, please call or <a href="mailto:Todd@IFoundYourNewHome.com?subject=I would like to request the listings in the Greenburg Neighborhood of Tigard"><font color="#ff3333">click here</font></a>, to request an update.</p>
<p>If you are interested in selling your home for top dollar in the quickest amount of time, please contact me anytime at 503-524-9494 or <a href="mailto:Todd@IFoundYourNewHome.com?subject=I would like to find out how much my home in the Greenburg Neighborhood is worth"><font color="#ff3333">click here</font></a> to send me an e-mail requesting further information.</p>
<p><img width="112" src="http://activerain.com/image_store/uploads/8/6/4/6/2/ar119640485226468.jpg" alt=" " height="40" /></p>
<p>Todd Clark - broker<br />
Kastings &#38; Associates<br />
Phone: (503)524-9494<br />
Fax: (503)622-8739</p>
<p><a target="_blank" href="mailto:Todd@IFoundYourNewHome.com?subject=Contact from your blog"><img width="75" src="http://activerain.com/image_store/uploads/1/8/1/5/3/ar120041612435181.png" alt=" " height="32" /></a> <a target="_blank" href="http://www.ifoundyournewhome.com/MLS_Search/page_1974098.html"><img width="85" src="http://activerain.com/image_store/uploads/8/6/8/1/0/ar120041617301868.png" alt=" " height="31" /></a> <a target="_blank" href="http://www.ifoundyournewhome.com/"><img width="75" src="http://activerain.com/image_store/uploads/1/2/4/7/8/ar120041623687421.png" alt=" " height="31" /></a></div>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Beaverton, Oregon home sales (Cooper Mountain Neighborhood) (10/10/2008) ]]></title>
<link>http://yourlifetimeagent.wordpress.com/?p=785</link>
<pubDate>Fri, 10 Oct 2008 17:32:30 +0000</pubDate>
<dc:creator>yourlifetimeagent</dc:creator>
<guid>http://yourlifetimeagent.da.wordpress.com/2008/10/10/beaverton-oregon-home-sales-cooper-mountain-neighborhood-10102008/</guid>
<description><![CDATA[The Cooper Mountain neighborhood of Beaverton, Oregon goes east from Grabhorn Rd to 175th Ave, then ]]></description>
<content:encoded><![CDATA[<p>The Cooper Mountain neighborhood of <a target="_blank" href="http://www.ifoundyournewhome.com/Beaverton__Aloha_Homes/page_1771645.html" title="City of Tigard - History"><font color="#ff3333">Beaverton, Oregon</font></a> goes east from Grabhorn Rd to 175th Ave, then north from Kemmer Rd to Farmington Road. The two parks in the area are <a href="http://activerain.com/blogsview/532877/Burnsridge-Park-in-Aloha"><span class="SpellE">Burnsridge</span> Park</a> and <a href="http://activerain.com/blogsview/534100/Granada-Park-in-Aloha">Granada<br />
park</a>.</p>
<p><a target="_blank" href="http://maps.google.com/maps/ms?ie=UTF8&#38;hl=en&#38;msa=0&#38;ll=45.464947,-122.869978&#38;spn=0.045388,0.138187&#38;z=13&#38;om=1&#38;msid=107286649515521687082.000441934f0a96f60d82f"><img width="423" src="http://activerain.com/image_store/uploads/1/9/2/5/4/ar119801185445291.jpg" alt="Cooper Mountain Neighborhood" height="349" style="width:392px;height:337px;" /></a><br />
<a target="_blank" href="http://maps.google.com/maps/ms?ie=UTF8&#38;hl=en&#38;msa=0&#38;ll=45.464947,-122.869978&#38;spn=0.045388,0.138187&#38;z=13&#38;om=1&#38;msid=107286649515521687082.000441934f0a96f60d82f"><font color="#ff3333">View Larger Map</font></a></p>
<p>As of 10/10/2008 here are the stats for the Cooper Mountain Neighborhood. This week I’ve changed the stats to only count the sales from the last 7 days to give a better reflection of what is going on in the neighborhood during any given week.</p>
<table border="1" width="350" cellPadding="2" cellSpacing="0">
<tr>
<td><strong>Total number of homes for sale:</strong></td>
<td align="right">131</td>
</tr>
<tr>
<td>Average List Price:</td>
<td align="right">$423,079</td>
</tr>
<tr>
<td>Average Days on Market:</td>
<td align="right">77</td>
</tr>
</table>
<p><br></p>
<table border="1" width="350" cellPadding="2" cellSpacing="0">
<tr>
<td><strong>Total Pending home sales:            </strong></td>
<td align="right">25</td>
</tr>
<tr>
<td>Average List Price:</td>
<td align="right">$466,017</td>
</tr>
<tr>
<td>Average Days on Market:</td>
<td align="right">106</td>
</tr>
</table>
<p><BR></p>
<table border="1" width="350" cellPadding="2" cellSpacing="0">
<tr>
<td><b>Total Expired Home Sales Last 7 days         </b></td>
<td align="right">1</td>
</tr>
<tr>
<td>Average List Price:</td>
<td align="right">     $456,900</td>
</tr>
<tr>
<td>Average Days on Market:</td>
<td align="right">153</td>
</tr>
</table>
<p><br></p>
<table border="1" width="350" cellPadding="2" cellSpacing="0">
<tr>
<td><strong>Total Sold in the last 30 days:       </strong></td>
<td align="right">0</td>
</tr>
<tr>
<td>Average List Price:</td>
<td align="right">$000,000</td>
</tr>
<tr>
<td>Average Sold Price:</td>
<td align="right">$000,000</td>
</tr>
<tr>
<td>Average Days on Market:</td>
<td align="right">0</td>
</tr>
</table>
<p><strong><a target="_blank" href="http://www.ifoundyournewhome.com/Cooper_Mountain_Neighborhood_Beaverton_Oregon/page_1982792.html"><font color="#ff3333">Click here to view the last few weekly reports and the averages since I started keeping stats</font></a></strong><br></p>
<p>For a complete list of homes for sale in the Cooper Mountain Neighborhood, please call or <a href="mailto:Todd@IFoundYourNewHome.com?subject=I would like to request the listings in the Cooper Mountain Neighborhood of Beaverton"><font color="#ff3333">Click here</font></a>, to request an update. </p>
<p><br><br>If you are interest in the featured home below, located in the Granada Park neighborhood of Cooper Mountain, just click on the picture and you will be taken to the listings website.<br><Br><br />
<a target="_blank" href="http://www.flyinside.com/tour.php?id=24718"> <img width="85" src="http://i162.photobucket.com/albums/t241/YourLifetimeAgent/100_6476.jpg" alt=" " height="31" /></a><br><br></p>
<p>If you are interested in selling your home for top dollar in the quickest amount of time, please contact me anytime at 503-524-9494 or <a href="mailto:Todd@IFoundYourNewHome.com?subject=I would like to request the listings in the Cooper Mountain Neighborhood of Tigard"><font color="#ff3333">Click here</font></a> to send me an e-mail requesting further information.</p>
<p><img width="112" src="http://activerain.com/image_store/uploads/8/6/4/6/2/ar119640485226468.jpg" alt=" " height="40" /></p>
<p>Todd Clark - broker<br />
Kastings &#38; Associates<br />
Phone: (503)524-9494<br />
Fax: (503)622-8739</p>
<p><a target="_blank" href="mailto:Todd@IFoundYourNewHome.com?subject=Contact from your blog"><img width="75" src="http://activerain.com/image_store/uploads/1/8/1/5/3/ar120041612435181.png" alt=" " height="32" /></a> <a target="_blank" href="http://www.ifoundyournewhome.com/MLS_Search/page_1974098.html"> <img width="85" src="http://activerain.com/image_store/uploads/8/6/8/1/0/ar120041617301868.png" alt=" " height="31" /></a> <a target="_blank" href="http://www.ifoundyournewhome.com/"><img width="75" src="http://activerain.com/image_store/uploads/1/2/4/7/8/ar120041623687421.png" alt=" " height="31" /></a></strong></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Tigard, Oregon home sales (Bull Mountain South Neighborhood) (10/10/2008)]]></title>
<link>http://yourlifetimeagent.wordpress.com/?p=783</link>
<pubDate>Fri, 10 Oct 2008 17:27:20 +0000</pubDate>
<dc:creator>yourlifetimeagent</dc:creator>
<guid>http://yourlifetimeagent.da.wordpress.com/2008/10/10/tigard-oregon-home-sales-bull-mountain-south-neighborhood-10102008/</guid>
<description><![CDATA[The Bull Mountain South neighborhood of Tigard, Oregon goes west, starting at Pacific Hwy to Roy Rod]]></description>
<content:encoded><![CDATA[<p>The Bull Mountain South neighborhood of <a target="_blank" href="http://www.ifoundyournewhome.com/More_About_Tigard/page_1838442.html" title="City of Tigard - History"><font color="#ff3333">Tigard, Oregon</font></a> goes west, starting at Pacific Hwy to Roy Rodgers Rd, Then south from Bull Mountain Rd to Beef Bend Rd. This part of <a target="_blank" href="http://www.ifoundyournewhome.com/More_About_Tigard/page_1838442.html" title="City of Tigard - History"><font color="#ff3333">Tigard, Oregon</font></a> is in Tigard School district even though Bull Mountain itself hasn’t been incorporated in to <a href="http://www.ifoundyournewhome.com/More_About_Tigard/page_1838442.html"><font color="#ff3333">Tigard</font></a>. Even though this is a more expensive area, there are presently no parks located in the Bull Mountain South area.</p>
<p><a target="_blank" href="http://maps.google.com/maps/ms?ie=UTF8&#38;hl=en&#38;msa=0&#38;ll=45.408333,-122.825432&#38;spn=0.022717,0.069094&#38;z=14&#38;om=1&#38;msid=107286649515521687082.00044250918f4949b21af"><img width="384" src="http://i162.photobucket.com/albums/t241/YourLifetimeAgent/website/Bull%20Mountain%20South/BullMountainSouthGoogleMap.jpg" alt=" " height="327" /></a><br />
<a target="_blank" href="http://maps.google.com/maps/ms?ie=UTF8&#38;hl=en&#38;msa=0&#38;ll=45.408333,-122.825432&#38;spn=0.022717,0.069094&#38;z=14&#38;om=1&#38;msid=107286649515521687082.00044250918f4949b21af"><font color="#ff3333">View Larger Map</font></a></p>
<p>As of 10/10/2008 here are the stats for the Bull Mountain South Neighborhood. I’ve changed the stats to only count the sales from the last 7 days to give a better reflection of what is going on in the neighborhood during any given week.</p>
<table border="1" width="350" cellPadding="2" cellSpacing="0">
<tr>
<td><strong>Total number of homes for sale:</strong></td>
<td align="right">134</td>
</tr>
<tr>
<td>Average List Price:</td>
<td align="right">$406,354</td>
</tr>
<tr>
<td>Average Days on Market:</td>
<td align="right">84</td>
</tr>
</table>
<p><br></p>
<table border="1" width="350" cellPadding="2" cellSpacing="0">
<tr>
<td><strong>Total Pending home sales:            </strong></td>
<td align="right">25</td>
</tr>
<tr>
<td>Average List Price:</td>
<td align="right">$276,515</td>
</tr>
<tr>
<td>Average Days on Market:</td>
<td align="right">61</td>
</tr>
</table>
<p><BR></p>
<table border="1" width="350" cellPadding="2" cellSpacing="0">
<tr>
<td><b>Total Expired Home Sales Last 7 days         </b></td>
<td align="right">1</td>
</tr>
<tr>
<td>Average List Price:</td>
<td align="right">     $139,900</td>
</tr>
<tr>
<td>Average Days on Market:</td>
<td align="right">61</td>
</tr>
</table>
<p><br></p>
<table border="1" width="350" cellPadding="2" cellSpacing="0">
<tr>
<td><strong>Total Sold in the last 30 days:       </strong></td>
<td align="right">1</td>
</tr>
<tr>
<td>Average List Price:</td>
<td align="right">$229,900</td>
</tr>
<tr>
<td>Average Sold Price:</td>
<td align="right">$210,000</td>
</tr>
<tr>
<td>Average Days on Market:</td>
<td align="right">95</td>
</tr>
</table>
<p><strong><a target="_blank" href="http://www.ifoundyournewhome.com/Bull_Mountain_South_Neighborhood_Tigard_Oregon/page_1982787.html"><font color="#ff3333">Click here to view the last few weekly reports and the averages since I started keeping stats</font></a></strong></p>
<p>For a complete list of homes for sale in the Bull Mountain South Neighborhood, please call or <a href="mailto:Todd@IFoundYourNewHome.com?subject=Please send me daily updates of the Bull Mountain South Neighborhood in Tigard, Oregon"><font color="#ff3333">Click Here</font></a>, to request an update.</p>
<p>If you are interested in selling your home for top dollar in the quickest amount of time, please contact me anytime at 503-524-9494 or <a href="mailto:Todd@IFoundYourNewHome.com?subject=Please send me daily updates of the Bull Mountain South Neighborhood in Tigard, Oregon"><font color="#ff3333">Click Here</font></a> to send me an e-mail requesting further information.</p>
<p><img width="112" src="http://activerain.com/image_store/uploads/8/6/4/6/2/ar119640485226468.jpg" alt=" " height="40" /></p>
<p>Todd Clark - broker<br />
Kastings &#38; Associates<br />
Phone: (503)524-9494<br />
Fax: (503)622-8739</p>
<p><a target="_blank" href="mailto:Todd@IFoundYourNewHome.com?subject=Contact from your blog"><img width="75" src="http://activerain.com/image_store/uploads/1/8/1/5/3/ar120041612435181.png" alt=" " height="32" /></a> <a target="_blank" href="http://www.ifoundyournewhome.com/MLS_Search/page_1974098.html"><img width="85" src="http://activerain.com/image_store/uploads/8/6/8/1/0/ar120041617301868.png" alt=" " height="31" /></a> <a target="_blank" href="http://www.ifoundyournewhome.com/"><img width="75" src="http://activerain.com/image_store/uploads/1/2/4/7/8/ar120041623687421.png" alt=" " height="31" /></a></p>
<div class="commentPos"></div>
<p><a rel="tag" href="http://wordpress.com/tag/washington-county/"><font color="#ff3333"></font></a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Microsoft and jQuery]]></title>
<link>http://updatepanel.wordpress.com/?p=45</link>
<pubDate>Mon, 29 Sep 2008 18:13:46 +0000</pubDate>
<dc:creator>tzkuei</dc:creator>
<guid>http://updatepanel.net/2008/09/29/microsoft-and-jquery/</guid>
<description><![CDATA[Back in July, Microsoft published the ASP.NET AJAX Roadmap in which they mentioned the following fe]]></description>
<content:encoded><![CDATA[<p class="MsoPlainText">Back in July, Microsoft published the <a href="http://www.codeplex.com/aspnet/Release/ProjectReleases.aspx?ReleaseId=14924" target="_blank">ASP.NET AJAX Roadmap</a> in which they mentioned the following features:</p>
<ul>
<li>CSS 2.1 DOM selection with support for native querySelector APIs.</li>
<li>Chainable DOM generation and manipulation APIs.</li>
<li>CSS selector-based event sink so that it becomes possible to set-up an event for all elements that satisfy a given selector at the time when the sink is created and later. </li>
</ul>
<p class="MsoPlainText">Now, where have I used those features before?  I wondered why Microsoft didn't just include jQuery instead of reinventing the wheel.</p>
<p class="MsoPlainText">So I was pleasantly surprised that Microsoft announced that they are going to include and support jQuery afterall.</p>
<p class="MsoPlainText">jQuery plays well with MicrosoftAjaxLibrary (actually it should be the other way round since jQuery precedes MicrosoftAjaxLibrary).  MicrosoftAjaxLibrary offers great component building, extensibility and interoperability with ASP.NET web services. jQuery offers simple yet powerful DOM selection and manipulation APIs.</p>
]]></content:encoded>
</item>

</channel>
</rss>
