<?xml version="1.0" encoding="UTF-8"?>
<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/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>tgrayimages.com</title>
	<atom:link href="http://tgrayimages.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://tgrayimages.com</link>
	<description>Designs by Tony Gray</description>
	<lastBuildDate>Fri, 07 Sep 2012 03:30:47 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>My First iPhone App, One Step at a Time &#8211;  Part 1</title>
		<link>http://tgrayimages.com/my-first-iphone-app-one-step-at-a-time/</link>
		<comments>http://tgrayimages.com/my-first-iphone-app-one-step-at-a-time/#comments</comments>
		<pubDate>Sun, 02 Sep 2012 06:44:09 +0000</pubDate>
		<dc:creator>Tony</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://tgrayimages.com/?p=2008</guid>
		<description><![CDATA[I&#8217;ve recently started trying to learn how to create iPhone apps and 20 or so tutorials later I&#8217;m no better off then when I started. I could follow someone else&#8217;s instructions step by step but when I got to the end I had no idea what I had just done or how to reproduce it. [...]]]></description>
				<content:encoded><![CDATA[<p>I&#8217;ve recently started trying to learn how to create iPhone apps and 20 or so tutorials later I&#8217;m no better off then when I started. I could follow someone else&#8217;s instructions step by step but when I got to the end I had no idea what I had just done or how to reproduce it. So I decided to stop the tutorials and start my own app and just do one thing at a time and maybe this will help me learn in baby steps. I&#8217;m going to try and write it all down here for my documentation but maybe it might help someone else as well. So, here we go.</p>
<p>Part 1</p>
<p>Goal for this step: Read from a database and display the data in a UITableView</p>
<p>Let&#8217;s create a new project in Xcode and create a new Single View Application.</p>
<p>&nbsp;</p>
<p><a href="http://i2.wp.com/tgrayimages.com/media/Screen-Shot-2012-09-01-at-10.55.23-PM.png"><img class="alignnone  wp-image-2012" title="Screen Shot 2012-09-01 at 10.55.23 PM" src="http://i2.wp.com/tgrayimages.com/media/Screen-Shot-2012-09-01-at-10.55.23-PM.png?resize=530%2C357" alt="" data-recalc-dims="1" /></a></p>
<p><a href="http://i1.wp.com/tgrayimages.com/media/Screen-Shot-2012-09-01-at-10.55.46-PM.png"><img class="alignnone  wp-image-2013" title="Screen Shot 2012-09-01 at 10.55.46 PM" src="http://i1.wp.com/tgrayimages.com/media/Screen-Shot-2012-09-01-at-10.55.46-PM.png?resize=530%2C357" alt="" data-recalc-dims="1" /></a></p>
<p><a href="http://i2.wp.com/tgrayimages.com/media/Screen-Shot-2012-09-01-at-10.56.14-PM.png"><img class="alignnone  wp-image-2014" title="Screen Shot 2012-09-01 at 10.56.14 PM" src="http://i2.wp.com/tgrayimages.com/media/Screen-Shot-2012-09-01-at-10.56.14-PM.png?resize=530%2C357" alt="" data-recalc-dims="1" /></a></p>
<p>&nbsp;</p>
<p>Once the project is created, click on the MainStoryboard.storyboard and delete the view controller created by the project. Then drag a new Table View Controller onto the storyboard.</p>
<p><a href="http://i2.wp.com/tgrayimages.com/media/Screen-Shot-2012-09-01-at-11.14.16-PM.png"><img class="alignnone  wp-image-2016" title="Screen Shot 2012-09-01 at 11.14.16 PM" src="http://i2.wp.com/tgrayimages.com/media/Screen-Shot-2012-09-01-at-11.14.16-PM.png?resize=530%2C357" alt="" data-recalc-dims="1" /></a></p>
<p>&nbsp;</p>
<p>Now go into the ViewController.h and change the ViewController to inherit from UITAbleViewController instead of UIViewController.</p>
<p>@interface ViewController : UITableViewController</p>
<p>Now go back to the storyboard and click on the view controller, then click on the Identity Inspector tab and make sure the class is set to ViewController.</p>
<p><a href="http://i1.wp.com/tgrayimages.com/media/MySchedule.xcodeproj-—-MainStoryboard.storyboard.jpg"><img class="alignnone  wp-image-2017" title="MainStoryboard.storyboard" src="http://i0.wp.com/tgrayimages.com/media/MySchedule.xcodeproj-%E2%80%94-MainStoryboard.storyboard.jpg?resize=530%2C378" alt="" data-recalc-dims="1" /></a></p>
<p>&nbsp;</p>
<p>Save the project and run. You should see an empty TableView.</p>
<p><a href="http://i0.wp.com/tgrayimages.com/media/iOS-Simulator-iPhone-iOS-6.0-10A5338d.png"><img class="alignnone size-full wp-image-2020" title="iOS Simulator - iPhone - iOS 6.0 (10A5338d)" src="http://i0.wp.com/tgrayimages.com/media/iOS-Simulator-iPhone-iOS-6.0-10A5338d.png?resize=396%2C744" alt="" data-recalc-dims="1" /></a></p>
<p>&nbsp;</p>
<p>Now its time to create the database. Download <a href="https://addons.mozilla.org/en-US/firefox/addon/sqlite-manager/">SQLite Manager for FireFox</a> and create a very simple table. For now all the column are going to be text just to keep things simple.</p>
<p><a href="http://i2.wp.com/tgrayimages.com/media/LittleSnapper.png"><img class="alignnone size-medium wp-image-2025" title="LittleSnapper" src="http://i2.wp.com/tgrayimages.com/media/LittleSnapper.png?resize=530%2C348" alt="" data-recalc-dims="1" /></a></p>
<p>&nbsp;</p>
<p>Drag the database mySchedule.sqlite and drop it on Xcode. Be sure to select &#8220;copy&#8221; items into destination group&#8217;s folder.</p>
<p><a href="http://i1.wp.com/tgrayimages.com/media/Screen-Shot-2012-09-02-at-12.24.27-AM.png"><img class="alignnone size-medium wp-image-2026" title="Screen Shot 2012-09-02 at 12.24.27 AM" src="http://i1.wp.com/tgrayimages.com/media/Screen-Shot-2012-09-02-at-12.24.27-AM.png?resize=530%2C301" alt="" data-recalc-dims="1" /></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>Create a class for the database by clicking &#8220;file&#8221; on the menu and then &#8220;new&#8221; then &#8220;file&#8221;. Select the &#8220;Objective-C class&#8221; and select &#8220;next&#8221;.</p>
<p><a href="http://i2.wp.com/tgrayimages.com/media/Screen-Shot-2012-09-02-at-12.39.19-AM.png"><img class="alignnone size-medium wp-image-2027" title="Screen Shot 2012-09-02 at 12.39.19 AM" src="http://i2.wp.com/tgrayimages.com/media/Screen-Shot-2012-09-02-at-12.39.19-AM.png?resize=530%2C313" alt="" data-recalc-dims="1" /></a></p>
<p>&nbsp;</p>
<p>Change MySchedule.h to look like below. Defining the pointers and properties of the table columns.</p>
<pre><code> @interface MySchedule : NSObject{ NSString *weekof; NSString *monday; NSString *tuesday; NSString *wednesday; NSString *thursday; NSString *friday; NSString *saturday; NSString *sunday; } @property(nonatomic, copy) NSString *weekof; @property(nonatomic, copy) NSString *monday; @property(nonatomic, copy) NSString *tuesday; @property(nonatomic, copy) NSString *wednesday; @property(nonatomic, copy) NSString *thursday; @property(nonatomic, copy) NSString *friday; @property(nonatomic, copy) NSString *saturday; @property(nonatomic, copy) NSString *sunday; @end </code></pre>
<p>Add &#8220;import sqlite3.h&#8221; to both ViewController.h and ViewController.m.</p>
<p>Create an NSMutableArray called scheduleArray to hold the data we will read from the database.</p>
<p>Create a method called scheduleList.</p>
<p>ViewController.h should look like this.</p>
<p><a href="http://i1.wp.com/tgrayimages.com/media/Screen-Shot-2012-09-02-at-1.07.01-AM.png"><img class="alignnone size-full wp-image-2035" title="Screen Shot 2012-09-02 at 1.07.01 AM" src="http://i1.wp.com/tgrayimages.com/media/Screen-Shot-2012-09-02-at-1.07.01-AM.png?resize=439%2C168" alt="" data-recalc-dims="1" /></a></p>
<p>&nbsp;</p>
<p><a href="http://i0.wp.com/tgrayimages.com/media/Screen-Shot-2012-09-02-at-1.23.09-AM.png"><img class="alignnone size-medium wp-image-2038" title="Screen Shot 2012-09-02 at 1.23.09 AM" src="http://i0.wp.com/tgrayimages.com/media/Screen-Shot-2012-09-02-at-1.23.09-AM.png?resize=530%2C441" alt="" data-recalc-dims="1" /></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>Set the identifier in the proptype cell to ScheduleCell so we can refer to it by name in our code</p>
<p><a href="http://i2.wp.com/tgrayimages.com/media/Screen-Shot-2012-09-02-at-1.35.06-AM.png"><img class="alignnone size-medium wp-image-2040" title="Screen Shot 2012-09-02 at 1.35.06 AM" src="http://i2.wp.com/tgrayimages.com/media/Screen-Shot-2012-09-02-at-1.35.06-AM.png?resize=530%2C314" alt="" data-recalc-dims="1" /></a></p>
<p>&nbsp;</p>
<p>Now set the text of the table cells initial view in cellForRowAtIndexPath</p>
<p>Compile and Run and we have an app that displays dates from a database in a tableView.</p>
<p><a href="http://i0.wp.com/tgrayimages.com/media/Screen-Shot-2012-09-02-at-1.35.28-AM.png"><img class="alignnone size-full wp-image-2041" title="Screen Shot 2012-09-02 at 1.35.28 AM" src="http://i0.wp.com/tgrayimages.com/media/Screen-Shot-2012-09-02-at-1.35.28-AM.png?resize=396%2C744" alt="" data-recalc-dims="1" /></a></p>
<p>Download the project files for Part 1 - <a href="http://tgrayimages.com/media/MySchedule_part1.zip">MySchedule Part 1</a></p>
]]></content:encoded>
			<wfw:commentRss>http://tgrayimages.com/my-first-iphone-app-one-step-at-a-time/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>about tgray</title>
		<link>http://tgrayimages.com/about-tgray/</link>
		<comments>http://tgrayimages.com/about-tgray/#comments</comments>
		<pubDate>Sun, 20 Nov 2011 21:41:21 +0000</pubDate>
		<dc:creator>Tony</dc:creator>
				<category><![CDATA[about tgray]]></category>

		<guid isPermaLink="false">http://tgrayimages.com/?p=1944</guid>
		<description><![CDATA[For 19 years I have been perfecting my craft to create the best designs for your needs. My designs are a tasteful blend of art and functionality that come together to make a successful web site. In 1989 I began my career in art and design after graduating from the University of Arkansas with the [...]]]></description>
				<content:encoded><![CDATA[<p>For 19 years I have been perfecting my craft to create the best designs for your needs. My designs are a tasteful blend of art and functionality that come together to make a successful web site.</p>
<p>In 1989 I began my career in art and design after graduating from the University of Arkansas with the opening of a custom sign business. My career path slowly migrated into the computer design field and after a couple years the design path gave way to a career in computer programming. I spent about ten years working in small shops, international organizations and global companies in the computer programming arena all the while keeping my love for art and design alive on the side. As the internet began to become more widespread, I began to see where I could weld my love for design and computer programming into one. Web design, the perfect medium.</p>
<p>If you would like to find out more, please <a href="mailto:tony@tgrayimages.com">contact me</a> or join me on <a href="http://www.linkedin.com/in/tonygray" target="_blank">LinkedIn</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://tgrayimages.com/about-tgray/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>about tgray</title>
		<link>http://tgrayimages.com/tgray/</link>
		<comments>http://tgrayimages.com/tgray/#comments</comments>
		<pubDate>Sun, 13 Nov 2011 07:45:31 +0000</pubDate>
		<dc:creator>Tony</dc:creator>
				<category><![CDATA[About]]></category>

		<guid isPermaLink="false">http://tgrayimages.com/?p=1820</guid>
		<description><![CDATA[For 19 years I have been perfecting my craft to create the best designs for your needs. My designs are a tasteful blend of art and functionality that come together to make a successful web site. In 1989 I began my career in art and design after graduating from the University of Arkansas with the [...]]]></description>
				<content:encoded><![CDATA[<p>For 19 years I have been perfecting my craft to create the best designs for your needs. My designs are a tasteful blend of art and functionality that come together to make a successful web site.</p>
<p>In 1989 I began my career in art and design after graduating from the University of Arkansas with the opening of a custom sign business. My career path slowly migrated into the computer design field and after a couple years the design path gave way to a career in computer programming. I spent about ten years working in small shops, international organizations and global companies in the computer programming arena all the while keeping my love for art <a title="About" href="http://tgrayimages.com/about/">learn more&#8230;</a></p>
]]></content:encoded>
			<wfw:commentRss>http://tgrayimages.com/tgray/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Vegan Chili</title>
		<link>http://tgrayimages.com/vegan-chili/</link>
		<comments>http://tgrayimages.com/vegan-chili/#comments</comments>
		<pubDate>Fri, 11 Nov 2011 04:19:24 +0000</pubDate>
		<dc:creator>Tony</dc:creator>
				<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://www.tgrayimages.com/vegan-chili/</guid>
		<description><![CDATA[Prep Time: 30 mins &#124; Cook Time: 1 hr 45 mins &#124; Servings: 8 to 10 servings &#124; Difficulty: Medium Ingredients: 1 lb. cooked pinto beans 12 ounce bag Boca Meatless Ground 2 tbsp Earth Balance Buttery Spread 1 large onions, chopped 1 tbsp chopped garlic 2 3/4 tbsp oregano 1 1/2 tbsp ground cumin [...]]]></description>
				<content:encoded><![CDATA[<p><a href="http://i0.wp.com/www.tgrayimages.com/media/20111110-221901.jpg"><img class="alignnone size-medium wp-image-1751" title="20111110-221901.jpg" src="http://i0.wp.com/www.tgrayimages.com/media/20111110-221901.jpg?resize=530%2C709" alt="" data-recalc-dims="1" /></a></p>
<p><strong>Prep Time:</strong> 30 mins | <strong>Cook Time:</strong> 1 hr 45 mins | <strong>Servings:</strong> 8 to 10 servings | <strong>Difficulty:</strong> Medium</p>
<h3>Ingredients:</h3>
<ul>
<li>1 lb. cooked pinto beans</li>
<li>12 ounce bag Boca Meatless Ground</li>
<li>2 tbsp Earth Balance Buttery Spread</li>
<li>1 large onions, chopped</li>
<li>1 tbsp chopped garlic</li>
<li>2 3/4 tbsp oregano</li>
<li>1 1/2 tbsp ground cumin</li>
<li>6 ounce can tomato paste</li>
<li>1 cans tomatoes, in blender</li>
<li>1/2 tbsp salt</li>
<li>1/2 tbsp black pepper</li>
<li>4 tbsp chili powder</li>
<li>1 tbsp sugar</li>
</ul>
<h3>Directions:</h3>
<p>Cook onions and garlic in buttery spread until onions are clear. Then put in pinto beans and veggie crumbles. Put in other seasonings and tomatoes and cook slowly after bringing to a boil. Cook about 1 1/2 or 2 hours. Add enough water so it won&#8217;t stick. Slow simmer with lid on.</p>
]]></content:encoded>
			<wfw:commentRss>http://tgrayimages.com/vegan-chili/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Smith &amp; Brumley Athletic House</title>
		<link>http://tgrayimages.com/smith-brumley-athletic-house/</link>
		<comments>http://tgrayimages.com/smith-brumley-athletic-house/#comments</comments>
		<pubDate>Wed, 25 May 2011 04:05:12 +0000</pubDate>
		<dc:creator>Tony</dc:creator>
				<category><![CDATA[Web Sites]]></category>

		<guid isPermaLink="false">http://www.tgrayimages.com/?p=1734</guid>
		<description><![CDATA[]]></description>
				<content:encoded><![CDATA[<p><a href="http://i0.wp.com/www.tgrayimages.com/media/Smith-Brumley-Athletics-House.jpg"><img src="http://i0.wp.com/www.tgrayimages.com/media/Smith-Brumley-Athletics-House.jpg?resize=530%2C656" alt="" title="Smith-&amp;-Brumley-Athletics-House" class="alignnone size-full wp-image-1735" data-recalc-dims="1" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://tgrayimages.com/smith-brumley-athletic-house/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rowsey Furniture &amp; Accessories</title>
		<link>http://tgrayimages.com/rowsey-furniture-accessories/</link>
		<comments>http://tgrayimages.com/rowsey-furniture-accessories/#comments</comments>
		<pubDate>Wed, 25 May 2011 04:02:06 +0000</pubDate>
		<dc:creator>Tony</dc:creator>
				<category><![CDATA[Web Sites]]></category>

		<guid isPermaLink="false">http://www.tgrayimages.com/?p=1730</guid>
		<description><![CDATA[]]></description>
				<content:encoded><![CDATA[<p><a href="http://i2.wp.com/www.tgrayimages.com/media/Rowsey-Super-Discount-Furniture.jpg"><img src="http://i2.wp.com/www.tgrayimages.com/media/Rowsey-Super-Discount-Furniture.jpg?resize=530%2C553" alt="" title="Rowsey-Super-Discount-Furniture" class="alignnone size-full wp-image-1731" data-recalc-dims="1" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://tgrayimages.com/rowsey-furniture-accessories/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Surprise</title>
		<link>http://tgrayimages.com/surprise/</link>
		<comments>http://tgrayimages.com/surprise/#comments</comments>
		<pubDate>Sat, 07 May 2011 15:41:55 +0000</pubDate>
		<dc:creator>Tony</dc:creator>
				<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://www.tgrayimages.com/surprise/</guid>
		<description><![CDATA[surprise a video by tonygray216 on Flickr.]]></description>
				<content:encoded><![CDATA[<div style="margin: 0 0 10px 0; padding: 0; font-size: 0.8em; line-height: 1.6em;"><object type="application/x-shockwave-flash" width="500" height="281" data="http://www.flickr.com/apps/video/stewart.swf?v=71377" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"><param name="flashvars" value="intl_lang=en-us&#038;photo_secret=1b823480ce&#038;photo_id=5696467610&#038;flickr_show_info_box=true"></param><param name="movie" value="http://www.flickr.com/apps/video/stewart.swf?v=71377"></param><param name="bgcolor" value="#000000"></param><param name="allowFullScreen" value="true"></param><embed type="application/x-shockwave-flash" src="http://www.flickr.com/apps/video/stewart.swf?v=71377" bgcolor="#000000" allowfullscreen="true" flashvars="intl_lang=en-us&#038;photo_secret=1b823480ce&#038;photo_id=5696467610&#038;flickr_show_info_box=true" height="281" width="500"></embed></object><br/><span style="margin: 0;"><a href="http://www.flickr.com/photos/yargynot/5696467610/">surprise</a> a video by <a href="http://www.flickr.com/photos/yargynot/">tonygray216</a> on Flickr.</span></div></p>
]]></content:encoded>
			<wfw:commentRss>http://tgrayimages.com/surprise/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Halloween 2010</title>
		<link>http://tgrayimages.com/halloween-2010/</link>
		<comments>http://tgrayimages.com/halloween-2010/#comments</comments>
		<pubDate>Sun, 31 Oct 2010 14:32:12 +0000</pubDate>
		<dc:creator>Tony</dc:creator>
				<category><![CDATA[Photos]]></category>

		<guid isPermaLink="false">http://www.tgrayimages.com/?p=1643</guid>
		<description><![CDATA[Scary Stuff from Halloween]]></description>
				<content:encoded><![CDATA[
<a href='http://tgrayimages.com/halloween-2010/img_3923/' title='Lizzy the Mad Scientist'><img data-attachment-id="1657" data-orig-file="http://i0.wp.com/tgrayimages.com/media/IMG_3923.jpg?resize=3456%2C2304" data-orig-size="3456,2304" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;5&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon EOS REBEL T1i&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1288506535&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;42&quot;,&quot;iso&quot;:&quot;400&quot;,&quot;shutter_speed&quot;:&quot;0.0166666666667&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="Lizzy the Mad Scientist" data-image-description="" data-medium-file="http://i0.wp.com/tgrayimages.com/media/IMG_3923.jpg?fit=530%2C2000" data-large-file="http://i0.wp.com/tgrayimages.com/media/IMG_3923.jpg?fit=1000%2C3000" src="http://i0.wp.com/tgrayimages.com/media/IMG_3923.jpg?resize=125%2C125" class="attachment-thumbnail" alt="Lizzy the Mad Scientist" /></a>
<a href='http://tgrayimages.com/halloween-2010/img_3925/' title='Making the skull ice cubes'><img data-attachment-id="1659" data-orig-file="http://i0.wp.com/tgrayimages.com/media/IMG_3925.jpg?resize=3456%2C2304" data-orig-size="3456,2304" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;5.6&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon EOS REBEL T1i&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1288506552&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;48&quot;,&quot;iso&quot;:&quot;400&quot;,&quot;shutter_speed&quot;:&quot;0.0166666666667&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="Making the skull ice cubes" data-image-description="" data-medium-file="http://i0.wp.com/tgrayimages.com/media/IMG_3925.jpg?fit=530%2C2000" data-large-file="http://i0.wp.com/tgrayimages.com/media/IMG_3925.jpg?fit=1000%2C3000" src="http://i0.wp.com/tgrayimages.com/media/IMG_3925.jpg?resize=125%2C125" class="attachment-thumbnail" alt="Making the skull ice cubes" /></a>
<a href='http://tgrayimages.com/halloween-2010/img_3924/' title='Lizzy the Mad Scientist'><img data-attachment-id="1658" data-orig-file="http://i0.wp.com/tgrayimages.com/media/IMG_3924.jpg?resize=3456%2C2304" data-orig-size="3456,2304" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;4&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon EOS REBEL T1i&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1288506537&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;18&quot;,&quot;iso&quot;:&quot;400&quot;,&quot;shutter_speed&quot;:&quot;0.0166666666667&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="Lizzy the Mad Scientist" data-image-description="" data-medium-file="http://i0.wp.com/tgrayimages.com/media/IMG_3924.jpg?fit=530%2C2000" data-large-file="http://i0.wp.com/tgrayimages.com/media/IMG_3924.jpg?fit=1000%2C3000" src="http://i0.wp.com/tgrayimages.com/media/IMG_3924.jpg?resize=125%2C125" class="attachment-thumbnail" alt="Lizzy the Mad Scientist" /></a>
<a href='http://tgrayimages.com/halloween-2010/img_3922/' title='Lizzy the Mad Scientist'><img data-attachment-id="1656" data-orig-file="http://i0.wp.com/tgrayimages.com/media/IMG_3922.jpg?resize=3456%2C2304" data-orig-size="3456,2304" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;5&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon EOS REBEL T1i&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1288506531&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;44&quot;,&quot;iso&quot;:&quot;400&quot;,&quot;shutter_speed&quot;:&quot;0.0166666666667&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="Lizzy the Mad Scientist" data-image-description="" data-medium-file="http://i0.wp.com/tgrayimages.com/media/IMG_3922.jpg?fit=530%2C2000" data-large-file="http://i0.wp.com/tgrayimages.com/media/IMG_3922.jpg?fit=1000%2C3000" src="http://i0.wp.com/tgrayimages.com/media/IMG_3922.jpg?resize=125%2C125" class="attachment-thumbnail" alt="Lizzy the Mad Scientist" /></a>
<a href='http://tgrayimages.com/halloween-2010/img_3921/' title='Lizzy the Mad Scientist'><img data-attachment-id="1655" data-orig-file="http://i0.wp.com/tgrayimages.com/media/IMG_3921.jpg?resize=3456%2C2304" data-orig-size="3456,2304" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;4&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon EOS REBEL T1i&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1288506521&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;24&quot;,&quot;iso&quot;:&quot;400&quot;,&quot;shutter_speed&quot;:&quot;0.0166666666667&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="Lizzy the Mad Scientist" data-image-description="" data-medium-file="http://i0.wp.com/tgrayimages.com/media/IMG_3921.jpg?fit=530%2C2000" data-large-file="http://i0.wp.com/tgrayimages.com/media/IMG_3921.jpg?fit=1000%2C3000" src="http://i0.wp.com/tgrayimages.com/media/IMG_3921.jpg?resize=125%2C125" class="attachment-thumbnail" alt="Lizzy the Mad Scientist" /></a>
<a href='http://tgrayimages.com/halloween-2010/img_3920/' title='Wendy as a Fairy'><img data-attachment-id="1654" data-orig-file="http://i1.wp.com/tgrayimages.com/media/IMG_3920.jpg?resize=3456%2C2304" data-orig-size="3456,2304" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;4.5&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon EOS REBEL T1i&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1288506509&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;33&quot;,&quot;iso&quot;:&quot;400&quot;,&quot;shutter_speed&quot;:&quot;0.0166666666667&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="Wendy as a Fairy" data-image-description="" data-medium-file="http://i1.wp.com/tgrayimages.com/media/IMG_3920.jpg?fit=530%2C2000" data-large-file="http://i1.wp.com/tgrayimages.com/media/IMG_3920.jpg?fit=1000%2C3000" src="http://i1.wp.com/tgrayimages.com/media/IMG_3920.jpg?resize=125%2C125" class="attachment-thumbnail" alt="Wendy as a Fairy" /></a>
<a href='http://tgrayimages.com/halloween-2010/img_3919/' title='Wendy as a Fairy'><img data-attachment-id="1653" data-orig-file="http://i0.wp.com/tgrayimages.com/media/IMG_3919.jpg?resize=3456%2C2304" data-orig-size="3456,2304" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;4.5&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon EOS REBEL T1i&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1288506505&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;33&quot;,&quot;iso&quot;:&quot;400&quot;,&quot;shutter_speed&quot;:&quot;0.0166666666667&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="Wendy as a Fairy" data-image-description="" data-medium-file="http://i0.wp.com/tgrayimages.com/media/IMG_3919.jpg?fit=530%2C2000" data-large-file="http://i0.wp.com/tgrayimages.com/media/IMG_3919.jpg?fit=1000%2C3000" src="http://i0.wp.com/tgrayimages.com/media/IMG_3919.jpg?resize=125%2C125" class="attachment-thumbnail" alt="Wendy as a Fairy" /></a>
<a href='http://tgrayimages.com/halloween-2010/img_3918/' title='IMG_3918'><img data-attachment-id="1652" data-orig-file="http://i1.wp.com/tgrayimages.com/media/IMG_3918-e1289313888842.jpg?resize=2304%2C3456" data-orig-size="2304,3456" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;4&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon EOS REBEL T1i&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1288506137&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;18&quot;,&quot;iso&quot;:&quot;400&quot;,&quot;shutter_speed&quot;:&quot;0.0166666666667&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_3918" data-image-description="" data-medium-file="http://i1.wp.com/tgrayimages.com/media/IMG_3918-e1289313888842.jpg?fit=530%2C2000" data-large-file="http://i1.wp.com/tgrayimages.com/media/IMG_3918-e1289313888842.jpg?fit=1000%2C3000" src="http://i1.wp.com/tgrayimages.com/media/IMG_3918-e1289313888842.jpg?resize=125%2C125" class="attachment-thumbnail" alt="IMG_3918" /></a>
<a href='http://tgrayimages.com/halloween-2010/img_3917/' title='Wendy as a fairy'><img data-attachment-id="1651" data-orig-file="http://i1.wp.com/tgrayimages.com/media/IMG_3917-e1289314068518.jpg?resize=2304%2C3456" data-orig-size="2304,3456" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;4&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon EOS REBEL T1i&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1288506130&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;24&quot;,&quot;iso&quot;:&quot;400&quot;,&quot;shutter_speed&quot;:&quot;0.0166666666667&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="Wendy as a fairy" data-image-description="&lt;p&gt;Notice the fingerless gloves&lt;/p&gt;
" data-medium-file="http://i1.wp.com/tgrayimages.com/media/IMG_3917-e1289314068518.jpg?fit=530%2C2000" data-large-file="http://i1.wp.com/tgrayimages.com/media/IMG_3917-e1289314068518.jpg?fit=1000%2C3000" src="http://i1.wp.com/tgrayimages.com/media/IMG_3917-e1289314068518.jpg?resize=125%2C125" class="attachment-thumbnail" alt="Wendy as a fairy" /></a>
<a href='http://tgrayimages.com/halloween-2010/img_3916/' title='IMG_3916'><img data-attachment-id="1650" data-orig-file="http://i2.wp.com/tgrayimages.com/media/IMG_3916-e1289313924371.jpg?resize=2304%2C3456" data-orig-size="2304,3456" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;5&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon EOS REBEL T1i&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1288506121&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;43&quot;,&quot;iso&quot;:&quot;400&quot;,&quot;shutter_speed&quot;:&quot;0.0166666666667&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_3916" data-image-description="" data-medium-file="http://i2.wp.com/tgrayimages.com/media/IMG_3916-e1289313924371.jpg?fit=530%2C2000" data-large-file="http://i2.wp.com/tgrayimages.com/media/IMG_3916-e1289313924371.jpg?fit=1000%2C3000" src="http://i2.wp.com/tgrayimages.com/media/IMG_3916-e1289313924371.jpg?resize=125%2C125" class="attachment-thumbnail" alt="IMG_3916" /></a>
<a href='http://tgrayimages.com/halloween-2010/img_3915/' title='IMG_3915'><img data-attachment-id="1649" data-orig-file="http://i2.wp.com/tgrayimages.com/media/IMG_3915.jpg?resize=3456%2C2304" data-orig-size="3456,2304" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;5&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon EOS REBEL T1i&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1288506108&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;43&quot;,&quot;iso&quot;:&quot;400&quot;,&quot;shutter_speed&quot;:&quot;0.0166666666667&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_3915" data-image-description="" data-medium-file="http://i2.wp.com/tgrayimages.com/media/IMG_3915.jpg?fit=530%2C2000" data-large-file="http://i2.wp.com/tgrayimages.com/media/IMG_3915.jpg?fit=1000%2C3000" src="http://i2.wp.com/tgrayimages.com/media/IMG_3915.jpg?resize=125%2C125" class="attachment-thumbnail" alt="IMG_3915" /></a>
<a href='http://tgrayimages.com/halloween-2010/img_3914/' title='IMG_3914'><img data-attachment-id="1648" data-orig-file="http://i2.wp.com/tgrayimages.com/media/IMG_3914-e1289313945624.jpg?resize=2304%2C3456" data-orig-size="2304,3456" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;4&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon EOS REBEL T1i&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1288505979&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;20&quot;,&quot;iso&quot;:&quot;400&quot;,&quot;shutter_speed&quot;:&quot;0.0166666666667&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_3914" data-image-description="" data-medium-file="http://i2.wp.com/tgrayimages.com/media/IMG_3914-e1289313945624.jpg?fit=530%2C2000" data-large-file="http://i2.wp.com/tgrayimages.com/media/IMG_3914-e1289313945624.jpg?fit=1000%2C3000" src="http://i2.wp.com/tgrayimages.com/media/IMG_3914-e1289313945624.jpg?resize=125%2C125" class="attachment-thumbnail" alt="IMG_3914" /></a>
<a href='http://tgrayimages.com/halloween-2010/img_3913/' title='IMG_3913'><img data-attachment-id="1647" data-orig-file="http://i2.wp.com/tgrayimages.com/media/IMG_3913.jpg?resize=3456%2C2304" data-orig-size="3456,2304" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;4&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon EOS REBEL T1i&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1288505969&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;20&quot;,&quot;iso&quot;:&quot;400&quot;,&quot;shutter_speed&quot;:&quot;0.0166666666667&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_3913" data-image-description="" data-medium-file="http://i2.wp.com/tgrayimages.com/media/IMG_3913.jpg?fit=530%2C2000" data-large-file="http://i2.wp.com/tgrayimages.com/media/IMG_3913.jpg?fit=1000%2C3000" src="http://i2.wp.com/tgrayimages.com/media/IMG_3913.jpg?resize=125%2C125" class="attachment-thumbnail" alt="IMG_3913" /></a>
<a href='http://tgrayimages.com/halloween-2010/img_3912/' title='IMG_3912'><img data-attachment-id="1646" data-orig-file="http://i1.wp.com/tgrayimages.com/media/IMG_3912.jpg?resize=3456%2C2304" data-orig-size="3456,2304" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;5&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon EOS REBEL T1i&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1288505931&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;44&quot;,&quot;iso&quot;:&quot;400&quot;,&quot;shutter_speed&quot;:&quot;0.0166666666667&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_3912" data-image-description="" data-medium-file="http://i1.wp.com/tgrayimages.com/media/IMG_3912.jpg?fit=530%2C2000" data-large-file="http://i1.wp.com/tgrayimages.com/media/IMG_3912.jpg?fit=1000%2C3000" src="http://i1.wp.com/tgrayimages.com/media/IMG_3912.jpg?resize=125%2C125" class="attachment-thumbnail" alt="IMG_3912" /></a>
<a href='http://tgrayimages.com/halloween-2010/img_3911/' title='Tasty Ghouly Punch'><img data-attachment-id="1645" data-orig-file="http://i2.wp.com/tgrayimages.com/media/IMG_3911.jpg?resize=3456%2C2304" data-orig-size="3456,2304" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;4&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon EOS REBEL T1i&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1288505921&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;28&quot;,&quot;iso&quot;:&quot;400&quot;,&quot;shutter_speed&quot;:&quot;0.0166666666667&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="Tasty Ghouly Punch" data-image-description="&lt;p&gt;Tasty Ghouly Punch with Kool-aid skull ice cubes&lt;/p&gt;
" data-medium-file="http://i2.wp.com/tgrayimages.com/media/IMG_3911.jpg?fit=530%2C2000" data-large-file="http://i2.wp.com/tgrayimages.com/media/IMG_3911.jpg?fit=1000%2C3000" src="http://i2.wp.com/tgrayimages.com/media/IMG_3911.jpg?resize=125%2C125" class="attachment-thumbnail" alt="Tasty Ghouly Punch" /></a>
<a href='http://tgrayimages.com/halloween-2010/img_3910/' title='Tasty Ghouly Punch'><img data-attachment-id="1644" data-orig-file="http://i1.wp.com/tgrayimages.com/media/IMG_3910.jpg?resize=3456%2C2304" data-orig-size="3456,2304" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;5&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon EOS REBEL T1i&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1288505915&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;41&quot;,&quot;iso&quot;:&quot;400&quot;,&quot;shutter_speed&quot;:&quot;0.0166666666667&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="Tasty Ghouly Punch" data-image-description="&lt;p&gt;Tasty Ghouly Punch with Kool-aid skull ice cubes&lt;/p&gt;
" data-medium-file="http://i1.wp.com/tgrayimages.com/media/IMG_3910.jpg?fit=530%2C2000" data-large-file="http://i1.wp.com/tgrayimages.com/media/IMG_3910.jpg?fit=1000%2C3000" src="http://i1.wp.com/tgrayimages.com/media/IMG_3910.jpg?resize=125%2C125" class="attachment-thumbnail" alt="Tasty Ghouly Punch" /></a>

<p>Scary Stuff from Halloween</p>
]]></content:encoded>
			<wfw:commentRss>http://tgrayimages.com/halloween-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Piece of Our Pie</title>
		<link>http://tgrayimages.com/piece-of-our-pie/</link>
		<comments>http://tgrayimages.com/piece-of-our-pie/#comments</comments>
		<pubDate>Sun, 19 Sep 2010 19:50:25 +0000</pubDate>
		<dc:creator>Tony</dc:creator>
				<category><![CDATA[Web Sites]]></category>

		<guid isPermaLink="false">http://www.tgrayimages.com/?p=1614</guid>
		<description><![CDATA[]]></description>
				<content:encoded><![CDATA[<p><a href="http://i1.wp.com/www.tgrayimages.com/media/pieceofourpie1.jpg"><img src="http://i1.wp.com/www.tgrayimages.com/media/pieceofourpie1.jpg?resize=530%2C1489" alt="" title="pieceofourpie" class="alignnone size-medium wp-image-1714" data-recalc-dims="1" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://tgrayimages.com/piece-of-our-pie/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>NWCC Game</title>
		<link>http://tgrayimages.com/nwcc-game/</link>
		<comments>http://tgrayimages.com/nwcc-game/#comments</comments>
		<pubDate>Fri, 10 Sep 2010 04:35:54 +0000</pubDate>
		<dc:creator>Tony</dc:creator>
				<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://www.tgrayimages.com/?p=1602</guid>
		<description><![CDATA[[media id=14 width=600 height=360] [media id=15 width=600 height=360]]]></description>
				<content:encoded><![CDATA[<p>[media id=14 width=600 height=360]</p>
<p>[media id=15 width=600 height=360]</p>
]]></content:encoded>
			<wfw:commentRss>http://tgrayimages.com/nwcc-game/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iPhone 4 sweetness! :D #iphone&#8230;</title>
		<link>http://tgrayimages.com/iphone-4-sweetness-d-iphone/</link>
		<comments>http://tgrayimages.com/iphone-4-sweetness-d-iphone/#comments</comments>
		<pubDate>Tue, 20 Jul 2010 17:40:53 +0000</pubDate>
		<dc:creator>Tony</dc:creator>
				<category><![CDATA[Tweets]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.tgrayimages.com/iphone-4-sweetness-d-iphone/</guid>
		<description><![CDATA[iPhone 4 sweetness! #iphone4]]></description>
				<content:encoded><![CDATA[<p>iPhone 4 sweetness! <img src='http://i1.wp.com/tgrayimages.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' data-recalc-dims="1" />  #<a href="http://search.twitter.com/search?q=%23iphone4" class="aktt_hashtag">iphone4</a></p>
]]></content:encoded>
			<wfw:commentRss>http://tgrayimages.com/iphone-4-sweetness-d-iphone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>DeSoto Hills Kids</title>
		<link>http://tgrayimages.com/desoto-hills-kids/</link>
		<comments>http://tgrayimages.com/desoto-hills-kids/#comments</comments>
		<pubDate>Wed, 14 Jul 2010 04:51:02 +0000</pubDate>
		<dc:creator>Tony</dc:creator>
				<category><![CDATA[Web Sites]]></category>

		<guid isPermaLink="false">http://www.tgrayimages.com/?p=1575</guid>
		<description><![CDATA[]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.tgrayimages.com/media/DeSoto-Hills-Kids.jpg"></a><a href="http://www.tgrayimages.com/media/DeSotoHillsKids.jpg"></a><a href="http://i2.wp.com/www.tgrayimages.com/media/DeSoto-Hills-Kids.jpg"><img class="alignnone size-medium wp-image-1633" title="DeSoto-Hills-Kids" src="http://i2.wp.com/www.tgrayimages.com/media/DeSoto-Hills-Kids.jpg?resize=530%2C445" alt="" data-recalc-dims="1" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://tgrayimages.com/desoto-hills-kids/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Oakland Baptist Church</title>
		<link>http://tgrayimages.com/oakland-baptist-church/</link>
		<comments>http://tgrayimages.com/oakland-baptist-church/#comments</comments>
		<pubDate>Wed, 14 Jul 2010 04:44:32 +0000</pubDate>
		<dc:creator>Tony</dc:creator>
				<category><![CDATA[Web Sites]]></category>

		<guid isPermaLink="false">http://www.tgrayimages.com/?p=1569</guid>
		<description><![CDATA[]]></description>
				<content:encoded><![CDATA[<p><a href="http://i1.wp.com/www.tgrayimages.com/media/Seeking-Serving-Sharing-Christ-Oakland-Baptist-Church.jpg"><img class="alignnone size-medium wp-image-1570" title="Seeking, Serving, Sharing Christ | Oakland Baptist Church" src="http://i1.wp.com/www.tgrayimages.com/media/Seeking-Serving-Sharing-Christ-Oakland-Baptist-Church.jpg?resize=530%2C540" alt="" data-recalc-dims="1" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://tgrayimages.com/oakland-baptist-church/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nothing wimpy but the name htt&#8230;</title>
		<link>http://tgrayimages.com/nothing-wimpy-but-the-name-htt/</link>
		<comments>http://tgrayimages.com/nothing-wimpy-but-the-name-htt/#comments</comments>
		<pubDate>Mon, 05 Jul 2010 19:23:00 +0000</pubDate>
		<dc:creator>Tony</dc:creator>
				<category><![CDATA[Tweets]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.tgrayimages.com/nothing-wimpy-but-the-name-htt/</guid>
		<description><![CDATA[Nothing wimpy but the name http://yfrog.com/7hliuoj]]></description>
				<content:encoded><![CDATA[<p>Nothing wimpy but the name <a href="http://yfrog.com/7hliuoj" rel="nofollow">http://yfrog.com/7hliuoj</a></p>
]]></content:encoded>
			<wfw:commentRss>http://tgrayimages.com/nothing-wimpy-but-the-name-htt/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>@jtoddmason just exercise more&#8230;</title>
		<link>http://tgrayimages.com/jtoddmason-just-exercise-more/</link>
		<comments>http://tgrayimages.com/jtoddmason-just-exercise-more/#comments</comments>
		<pubDate>Fri, 25 Jun 2010 17:13:45 +0000</pubDate>
		<dc:creator>Tony</dc:creator>
				<category><![CDATA[Tweets]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.tgrayimages.com/jtoddmason-just-exercise-more/</guid>
		<description><![CDATA[@jtoddmason just exercise more!]]></description>
				<content:encoded><![CDATA[<p>@<a href="http://twitter.com/jtoddmason" class="aktt_username">jtoddmason</a> just exercise more!</p>
]]></content:encoded>
			<wfw:commentRss>http://tgrayimages.com/jtoddmason-just-exercise-more/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>French Fries are not a vegetab&#8230;</title>
		<link>http://tgrayimages.com/french-fries-are-not-a-vegetab/</link>
		<comments>http://tgrayimages.com/french-fries-are-not-a-vegetab/#comments</comments>
		<pubDate>Mon, 26 Apr 2010 22:16:34 +0000</pubDate>
		<dc:creator>Tony</dc:creator>
				<category><![CDATA[Tweets]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.tgrayimages.com/french-fries-are-not-a-vegetab/</guid>
		<description><![CDATA[French Fries are not a vegetable! http://tinyurl.com/23jfe47]]></description>
				<content:encoded><![CDATA[<p>French Fries are not a vegetable! <a href="http://tinyurl.com/23jfe47" rel="nofollow">http://tinyurl.com/23jfe47</a></p>
]]></content:encoded>
			<wfw:commentRss>http://tgrayimages.com/french-fries-are-not-a-vegetab/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Drag and Drop Gmail Attachment&#8230;</title>
		<link>http://tgrayimages.com/drag-and-drop-gmail-attachment/</link>
		<comments>http://tgrayimages.com/drag-and-drop-gmail-attachment/#comments</comments>
		<pubDate>Fri, 16 Apr 2010 00:29:37 +0000</pubDate>
		<dc:creator>Tony</dc:creator>
				<category><![CDATA[Tweets]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.tgrayimages.com/drag-and-drop-gmail-attachment/</guid>
		<description><![CDATA[Drag and Drop Gmail Attachments http://bit.ly/a235g7]]></description>
				<content:encoded><![CDATA[<p>Drag and Drop Gmail Attachments <a href="http://bit.ly/a235g7" rel="nofollow">http://bit.ly/a235g7</a></p>
]]></content:encoded>
			<wfw:commentRss>http://tgrayimages.com/drag-and-drop-gmail-attachment/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>He is risen!</title>
		<link>http://tgrayimages.com/he-is-risen/</link>
		<comments>http://tgrayimages.com/he-is-risen/#comments</comments>
		<pubDate>Sun, 04 Apr 2010 13:37:37 +0000</pubDate>
		<dc:creator>Tony</dc:creator>
				<category><![CDATA[Tweets]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.tgrayimages.com/he-is-risen/</guid>
		<description><![CDATA[He is risen!]]></description>
				<content:encoded><![CDATA[<p>He is risen!</p>
]]></content:encoded>
			<wfw:commentRss>http://tgrayimages.com/he-is-risen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Touch my egg and I&#8217;ll bite you&#8230;</title>
		<link>http://tgrayimages.com/touch-my-egg-and-ill-bite-you/</link>
		<comments>http://tgrayimages.com/touch-my-egg-and-ill-bite-you/#comments</comments>
		<pubDate>Sun, 04 Apr 2010 05:08:36 +0000</pubDate>
		<dc:creator>Tony</dc:creator>
				<category><![CDATA[Tweets]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.tgrayimages.com/touch-my-egg-and-ill-bite-you/</guid>
		<description><![CDATA[Touch my egg and I&#8217;ll bite you. I&#8217;ve had a rough day! http://tinyurl.com/y9hmanl]]></description>
				<content:encoded><![CDATA[<p>Touch my egg and I&#8217;ll bite you.  I&#8217;ve had a rough day! <a href="http://tinyurl.com/y9hmanl" rel="nofollow">http://tinyurl.com/y9hmanl</a></p>
]]></content:encoded>
			<wfw:commentRss>http://tgrayimages.com/touch-my-egg-and-ill-bite-you/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sunday&#8217;s coming!!</title>
		<link>http://tgrayimages.com/sundays-coming/</link>
		<comments>http://tgrayimages.com/sundays-coming/#comments</comments>
		<pubDate>Fri, 02 Apr 2010 14:05:42 +0000</pubDate>
		<dc:creator>Tony</dc:creator>
				<category><![CDATA[Tweets]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.tgrayimages.com/sundays-coming/</guid>
		<description><![CDATA[Sunday&#8217;s coming!!]]></description>
				<content:encoded><![CDATA[<p>Sunday&#8217;s coming!!</p>
]]></content:encoded>
			<wfw:commentRss>http://tgrayimages.com/sundays-coming/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>COMBO! http://tinyurl.com/y9cy&#8230;</title>
		<link>http://tgrayimages.com/combo-httptinyurl-comy9cy/</link>
		<comments>http://tgrayimages.com/combo-httptinyurl-comy9cy/#comments</comments>
		<pubDate>Mon, 29 Mar 2010 19:08:57 +0000</pubDate>
		<dc:creator>Tony</dc:creator>
				<category><![CDATA[Tweets]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.tgrayimages.com/combo-httptinyurl-comy9cy/</guid>
		<description><![CDATA[COMBO! http://tinyurl.com/y9cy9ep]]></description>
				<content:encoded><![CDATA[<p>COMBO! <a href="http://tinyurl.com/y9cy9ep" rel="nofollow">http://tinyurl.com/y9cy9ep</a></p>
]]></content:encoded>
			<wfw:commentRss>http://tgrayimages.com/combo-httptinyurl-comy9cy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I got the Mac Heist bundle. 7 &#8230;</title>
		<link>http://tgrayimages.com/i-got-the-mac-heist-bundle-7/</link>
		<comments>http://tgrayimages.com/i-got-the-mac-heist-bundle-7/#comments</comments>
		<pubDate>Fri, 05 Mar 2010 23:37:44 +0000</pubDate>
		<dc:creator>Tony</dc:creator>
				<category><![CDATA[Tweets]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.tgrayimages.com/i-got-the-mac-heist-bundle-7/</guid>
		<description><![CDATA[I got the Mac Heist bundle. 7 fantastic Mac apps worth $260+ for only $19.95 and got 3 sweet bonus apps free! http://bit.ly/heist-it]]></description>
				<content:encoded><![CDATA[<p>I got the Mac Heist bundle. 7 fantastic Mac apps worth $260+ for only $19.95 and got 3 sweet bonus apps free! <a href="http://bit.ly/heist-it" rel="nofollow">http://bit.ly/heist-it</a></p>
]]></content:encoded>
			<wfw:commentRss>http://tgrayimages.com/i-got-the-mac-heist-bundle-7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>what&#8217;s all the buzz about?</title>
		<link>http://tgrayimages.com/whats-all-the-buzz-about/</link>
		<comments>http://tgrayimages.com/whats-all-the-buzz-about/#comments</comments>
		<pubDate>Thu, 11 Feb 2010 04:04:05 +0000</pubDate>
		<dc:creator>Tony</dc:creator>
				<category><![CDATA[Tweets]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.tgrayimages.com/whats-all-the-buzz-about/</guid>
		<description><![CDATA[what&#8217;s all the buzz about?]]></description>
				<content:encoded><![CDATA[<p>what&#8217;s all the buzz about?</p>
]]></content:encoded>
			<wfw:commentRss>http://tgrayimages.com/whats-all-the-buzz-about/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Automate File Attachments on y&#8230;</title>
		<link>http://tgrayimages.com/automate-file-attachments-on-y/</link>
		<comments>http://tgrayimages.com/automate-file-attachments-on-y/#comments</comments>
		<pubDate>Sun, 17 Jan 2010 04:49:27 +0000</pubDate>
		<dc:creator>Tony</dc:creator>
				<category><![CDATA[Tweets]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.tgrayimages.com/automate-file-attachments-on-y/</guid>
		<description><![CDATA[Automate File Attachments on your WordPress Posts http://bit.ly/5A7HFH #wordpress]]></description>
				<content:encoded><![CDATA[<p>Automate File Attachments on your WordPress Posts <a href="http://bit.ly/5A7HFH" rel="nofollow">http://bit.ly/5A7HFH</a> #<a href="http://search.twitter.com/search?q=%23wordpress" class="aktt_hashtag">wordpress</a></p>
]]></content:encoded>
			<wfw:commentRss>http://tgrayimages.com/automate-file-attachments-on-y/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Automate File Attachments on your WordPress Posts</title>
		<link>http://tgrayimages.com/automate-file-attachments-on-your-wordpress-posts/</link>
		<comments>http://tgrayimages.com/automate-file-attachments-on-your-wordpress-posts/#comments</comments>
		<pubDate>Sat, 16 Jan 2010 07:12:28 +0000</pubDate>
		<dc:creator>Tony</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.tgrayimages.com/?p=1424</guid>
		<description><![CDATA[UPDATE 4/24/2010: I updated the audio section to automatically wrap the audio with the flash player based on the example provided by Joseph Hinson I&#8217;ve been coding WordPress sites for 4 or 5 years now. The more I use it, the more I love it. WordPress is an awesome CMS tool. When I create a [...]]]></description>
				<content:encoded><![CDATA[<p>UPDATE 4/24/2010: I updated the audio section to automatically wrap the audio with the flash player based on the example provided by <a href="http://buildinternet.com/2010/04/adding-mp3-files-to-wordpress-themes/">Joseph Hinson</a></p>
<p>I&#8217;ve been coding WordPress sites for 4 or 5 years now. The more I use it, the more I love it. WordPress is an awesome CMS tool. When I create a site for a client, I want the site to be as easy as possible for a &#8220;non&#8221; web designer/developer types to maintain. One of my latest clients wanted to be able to create a post and attach a file for download. The client found it a little confusing to attach the file to a post and then include that file as a link. They also wanted to show an icon specific to the document type they had uploaded. With a little code, I was able to automate the process of linking to files attached to a WordPress post and specify the icon based on the files MIME type. There are plenty of articles on the web about WordPress attachments so I&#8217;m not going into any detail about that. Here is an article on attachments by Jeff Starr I&#8217;ve bookmarked for reference. <a href="http://digwp.com/2009/08/awesome-image-attachment-recipes-for-wordpress/">Digging into WordPress</a></p>
<p>Here is an example of what we are about to create. I&#8217;ve attached several sample files to this post and that&#8217;s it. By the way, the zip file listed below is a zip of all the icons for you to download.</p>
<div id="junk" style="clear: both;"><div class='documentIconsWrapper'> 
<div class='documentIcons'><a href='http://tgrayimages.com/media/2010/01/2010-01-03-AM.pdf'><img src='http://i0.wp.com/tgrayimages.com/wp-content/themes/tg5/images/mime/pdf.png' data-recalc-dims="1"/></a><br><a href='http://tgrayimages.com/media/2010/01/2010-01-03-AM.pdf'>2010-01-03-AM.pdf</a></div><div class='documentIcons'><a href='http://tgrayimages.com/media/2010/01/test.docx'><img src='http://i1.wp.com/tgrayimages.com/wp-content/themes/tg5/images/mime/word.png' data-recalc-dims="1"/></a><br><a href='http://tgrayimages.com/media/2010/01/test.docx'>test.docx</a></div><div class='documentIcons'><a href='http://tgrayimages.com/media/2010/01/test.doc'><img src='http://i1.wp.com/tgrayimages.com/wp-content/themes/tg5/images/mime/word.png' data-recalc-dims="1"/></a><br><a href='http://tgrayimages.com/media/2010/01/test.doc'>test.doc</a></div><div class='documentIcons'><a href='http://tgrayimages.com/media/2010/01/Presentation.pptx'><img src='http://i0.wp.com/tgrayimages.com/wp-content/themes/tg5/images/mime/PowerPoint.png' data-recalc-dims="1"/></a><br><a href='http://tgrayimages.com/media/2010/01/Presentation.pptx'>Presentation.pptx</a></div><div class='documentIcons'><a href='http://tgrayimages.com/media/2010/01/Presentation.ppt'><img src='http://i0.wp.com/tgrayimages.com/wp-content/themes/tg5/images/mime/PowerPoint.png' data-recalc-dims="1"/></a><br><a href='http://tgrayimages.com/media/2010/01/Presentation.ppt'>Presentation.ppt</a></div><div class='documentIcons'><a href='http://tgrayimages.com/media/2010/01/Workbook1.xlsx'><img src='http://i2.wp.com/tgrayimages.com/wp-content/themes/tg5/images/mime/XLS8.png' data-recalc-dims="1"/></a><br><a href='http://tgrayimages.com/media/2010/01/Workbook1.xlsx'>Workbook1.xlsx</a></div><div class='documentIcons'><a href='http://tgrayimages.com/media/2010/01/Workbook1.xls'><img src='http://i2.wp.com/tgrayimages.com/wp-content/themes/tg5/images/mime/XLS8.png' data-recalc-dims="1"/></a><br><a href='http://tgrayimages.com/media/2010/01/Workbook1.xls'>Workbook1.xls</a></div><div class='documentIcons'><a href='http://tgrayimages.com/media/2010/01/icons.zip'><img src='http://i0.wp.com/tgrayimages.com/wp-content/themes/tg5/images/mime/zip.png' data-recalc-dims="1"/></a><br><a href='http://tgrayimages.com/media/2010/01/icons.zip'>icons.zip</a></div><ul class='audiofiles'><li><h4 class='title'>Jeopardy Think Music</h4><object width='470' height='24' id='single1451' name='single1451'><param name='movie' value='player.swf'><param name='allowfullscreen' value='true'><param name='allowscriptaccess' value='always'><param name='wmode' value='transparent'><param name='flashvars' value='file=http://www.tgrayimages.com/media/2010/01/Jeopardy-Think-Music.mp3'><embed id='single1451' name='single1451' src='http://tgrayimages.com/wp-content/themes/tg5/jw/player.swf' width='470' height='24' bgcolor='#ffffff' allowscriptaccess='always' allowfullscreen='true' flashvars='file=http://www.tgrayimages.com/media/2010/01/Jeopardy-Think-Music.mp3' /></object><a href='http://www.tgrayimages.com/media/2010/01/Jeopardy-Think-Music.mp3'>Download</a></li></ul></div></div>
<p>First let&#8217;s create the function and the shortcode. Go to your themes folder and open functions.php. If you don&#8217;t have one, just create a new file named functions.php and save it to your themes folder.</p>
<p>Create a new function with the following code.</p>
<pre><code>function get_attachment_icons($echo = false){
	//PDF Documents
	if ( $files = get_children(array(   //do only if there are attachments of these qualifications
	 'post_parent' =&gt; get_the_ID(),
	 'post_type' =&gt; 'attachment',
	 'numberposts' =&gt; -1,
	 'post_mime_type' =&gt; 'application/pdf',  //MIME Type condition
	 ))){
	 foreach( $files as $file ){ //setup array for more than one file attachment
		$file_link = wp_get_attachment_url($file-&gt;ID);    //get the url for linkage
		$file_name_array=explode("/",$file_link); 
		$file_name=array_reverse($file_name_array);  //creates an array out of the url and grabs the filename
		$sAttachmentString .= "&lt;div class='documentIcons'&gt;";
		$sAttachmentString .= "&lt;a href='$file_link'&gt;";
		$sAttachmentString .= "&lt;img src='".get_bloginfo('template_directory')."/images/mime/pdf.png'/&gt;";
		$sAttachmentString .= "&lt;/a&gt;";
		$sAttachmentString .= "&lt;br&gt;";
		$sAttachmentString .= "&lt;a href='$file_link'&gt;$file_name[0]&lt;/a&gt;";
		$sAttachmentString .= "&lt;/div&gt;";
		}
	}
</code></pre>
<p>This block is for PDF files. You can tell that by the line that says <span class="code">&#8216;post_mime_type&#8217; =&gt; &#8216;application/pdf&#8217;,</span>. Just change the MIME type for the type of file you are expecting.  In the final code, I&#8217;ve added a new loop for each MIME type below:</p>
<ul style="margin: 0 0 20px 40px;">
<li>PDF = application/pdf</li>
<li>Word Documents = application/msword</li>
<li>PowerPoint = application/vnd.ms-powerpoint</li>
<li>Excel = application/vnd.ms-excel</li>
<li>Zip = application/zip</li>
<li>Audio files = audio/mpeg</li>
</ul>
<p>Now at the bottom of the function we will add the hook for the shortcode and we&#8217;re done!</p>
<pre><code>add_shortcode('attachment icons', 'get_attachment_icons');</code></pre>
<h3>Usage</h3>
<p>Just include a shortcode in any post</p>
<pre><code>&#91;attachment icons]</code></pre>
<p>or place one line in your single.php file (or where ever you&#8217;d like the document icons to show up)</p>
<pre><code>&lt;?php get_attachment_icons($echo=true); ?&gt;</code></pre>
<h3>Final Code</h3>
<p>Here is the code altogether for your copying and pasting pleasure. Enjoy!</p>
<pre><code>function get_attachment_icons($echo = false){
	$sAttachmentString = "&lt;div class='documentIconsWrapper'&gt; \n";
	if ( $files = get_children(array(   //do only if there are attachments of these qualifications
	 'post_parent' =&gt; get_the_ID(),
	 'post_type' =&gt; 'attachment',
	 'numberposts' =&gt; -1,
	 'post_mime_type' =&gt; 'application/pdf',  //MIME Type condition
	 ))){
	 foreach( $files as $file ){ //setup array for more than one file attachment
		$file_link = wp_get_attachment_url($file-&gt;ID);    //get the url for linkage
		$file_name_array=explode("/",$file_link); 
		$file_name=array_reverse($file_name_array);  //creates an array out of the url and grabs the filename
		$sAttachmentString .= "&lt;div class='documentIcons'&gt;";
		$sAttachmentString .= "&lt;a href='$file_link'&gt;";
		$sAttachmentString .= "&lt;img src='".get_bloginfo('template_directory')."/images/mime/pdf.png'/&gt;";
		$sAttachmentString .= "&lt;/a&gt;";
		$sAttachmentString .= "&lt;br&gt;";
		$sAttachmentString .= "&lt;a href='$file_link'&gt;$file_name[0]&lt;/a&gt;";
		$sAttachmentString .= "&lt;/div&gt;";
		}
	}
	//Word Documents
	if ( $files = get_children(array(   //do only if there are attachments of these qualifications
	 'post_parent' =&gt; get_the_ID(),
	 'post_type' =&gt; 'attachment',
	 'numberposts' =&gt; -1,
	 'post_mime_type' =&gt; 'application/msword',  //MIME Type condition
	 ))){
	 foreach( $files as $file ){ //setup array for more than one file attachment
		$file_link = wp_get_attachment_url($file-&gt;ID);    //get the url for linkage
		$file_name_array=explode("/",$file_link); 
		$file_name=array_reverse($file_name_array);  //creates an array out of the url and grabs the filename
		$sAttachmentString .= "&lt;div class='documentIcons'&gt;";
		$sAttachmentString .= "&lt;a href='$file_link'&gt;";
		$sAttachmentString .= "&lt;img src='".get_bloginfo('template_directory')."/images/mime/word.png'/&gt;";
		$sAttachmentString .= "&lt;/a&gt;";
		$sAttachmentString .= "&lt;br&gt;";
		$sAttachmentString .= "&lt;a href='$file_link'&gt;$file_name[0]&lt;/a&gt;";
		$sAttachmentString .= "&lt;/div&gt;";
		}
	}
	//Powerpoint Documents
	if ( $files = get_children(array(   //do only if there are attachments of these qualifications
	 'post_parent' =&gt; get_the_ID(),
	 'post_type' =&gt; 'attachment',
	 'numberposts' =&gt; -1,
	 'post_mime_type' =&gt; 'application/vnd.ms-powerpoint',  //MIME Type condition
	 ))){
	 foreach( $files as $file ){ //setup array for more than one file attachment
		$file_link = wp_get_attachment_url($file-&gt;ID);    //get the url for linkage
		$file_name_array=explode("/",$file_link); 
		$file_name=array_reverse($file_name_array);  //creates an array out of the url and grabs the filename
		$sAttachmentString .= "&lt;div class='documentIcons'&gt;";
		$sAttachmentString .= "&lt;a href='$file_link'&gt;";
		$sAttachmentString .= "&lt;img src='".get_bloginfo('template_directory')."/images/mime/PowerPoint.png'/&gt;";
		$sAttachmentString .= "&lt;/a&gt;";
		$sAttachmentString .= "&lt;br&gt;";
		$sAttachmentString .= "&lt;a href='$file_link'&gt;$file_name[0]&lt;/a&gt;";
		$sAttachmentString .= "&lt;/div&gt;";
		}
	}
	//Excel Documents
	if ( $files = get_children(array(   //do only if there are attachments of these qualifications
	 'post_parent' =&gt; get_the_ID(),
	 'post_type' =&gt; 'attachment',
	 'numberposts' =&gt; -1,
	 'post_mime_type' =&gt; 'application/vnd.ms-excel',  //MIME Type condition
	 ))){
	 foreach( $files as $file ){ //setup array for more than one file attachment
		$file_link = wp_get_attachment_url($file-&gt;ID);    //get the url for linkage
		$file_name_array=explode("/",$file_link); 
		$file_name=array_reverse($file_name_array);  //creates an array out of the url and grabs the filename
		$sAttachmentString .= "&lt;div class='documentIcons'&gt;";
		$sAttachmentString .= "&lt;a href='$file_link'&gt;";
		$sAttachmentString .= "&lt;img src='".get_bloginfo('template_directory')."/images/mime/XLS8.png'/&gt;";
		$sAttachmentString .= "&lt;/a&gt;";
		$sAttachmentString .= "&lt;br&gt;";
		$sAttachmentString .= "&lt;a href='$file_link'&gt;$file_name[0]&lt;/a&gt;";
		$sAttachmentString .= "&lt;/div&gt;";
		}
	}
	//Zipped Files
	if ( $files = get_children(array(   //do only if there are attachments of these qualifications
	 'post_parent' =&gt; get_the_ID(),
	 'post_type' =&gt; 'attachment',
	 'numberposts' =&gt; -1,
	 'post_mime_type' =&gt; 'application/zip',  //MIME Type condition
	 ))){
	 foreach( $files as $file ){ //setup array for more than one file attachment
		$file_link = wp_get_attachment_url($file-&gt;ID);    //get the url for linkage
		$file_name_array=explode("/",$file_link); 
		$file_name=array_reverse($file_name_array);  //creates an array out of the url and grabs the filename
		$sAttachmentString .= "&lt;div class='documentIcons'&gt;";
		$sAttachmentString .= "&lt;a href='$file_link'&gt;";
		$sAttachmentString .= "&lt;img src='".get_bloginfo('template_directory')."/images/mime/zip.png'/&gt;";
		$sAttachmentString .= "&lt;/a&gt;";
		$sAttachmentString .= "&lt;br&gt;";
		$sAttachmentString .= "&lt;a href='$file_link'&gt;$file_name[0]&lt;/a&gt;";
		$sAttachmentString .= "&lt;/div&gt;";
		}
	}
	
	//Audio Files
	$mp3s = get_children(array(   //do only if there are attachments of these qualifications
	 'post_parent' =&gt; get_the_ID(),
	 'post_type' =&gt; 'attachment',
	 'numberposts' =&gt; -1,
	 'post_mime_type' =&gt; 'audio',  //MIME Type condition
	 ) );

	if (!empty($mp3s)) : 
	$sAttachmentString .= "&lt;ul class='audiofiles'&gt;";
		foreach($mp3s as $mp3) : 
    		$sAttachmentString .= "&lt;li&gt;";
			if(!empty($mp3-&gt;post_title)) : //checking to make sure the post title isn't empty
				$sAttachmentString .= "&lt;h4 class='title'&gt;".$mp3-&gt;post_title."&lt;/h4&gt;";
			endif;

			if(!empty($mp3-&gt;post_content)) : //checking to make sure something exists in post_content (description)
				$sAttachmentString .= "&lt;p class='description'&gt;".$mp3-&gt;post_content."&lt;/p&gt;";
			endif;

			$sAttachmentString .= "&lt;object width='470' height='24' id='single".$mp3-&gt;ID."' name='single".$mp3-&gt;ID."'&gt;";
				$sAttachmentString .= "&lt;param name='movie' value='player.swf'&gt;";
				$sAttachmentString .= "&lt;param name='allowfullscreen' value='true'&gt;";
				$sAttachmentString .= "&lt;param name='allowscriptaccess' value='always'&gt;";
				$sAttachmentString .= "&lt;param name='wmode' value='transparent'&gt;";
				$sAttachmentString .= "&lt;param name='flashvars' value='file=".$mp3-&gt;guid."'&gt;";
					$sAttachmentString .= "&lt;embed ";
					  $sAttachmentString .= "id='single".$mp3-&gt;ID."' ";
					  $sAttachmentString .= "name='single".$mp3-&gt;ID."' ";
					  $sAttachmentString .= "src='".get_bloginfo('template_directory')."/jw/player.swf' ";
					  $sAttachmentString .= "width='470' ";
					  $sAttachmentString .= "height='24' ";
					  $sAttachmentString .= "bgcolor='#ffffff' ";
					  $sAttachmentString .= "allowscriptaccess='always' ";
					  $sAttachmentString .= "allowfullscreen='true' ";
					  $sAttachmentString .= "flashvars='file=".$mp3-&gt;guid."' ";
					  
					$sAttachmentString .= "/&gt;";
			$sAttachmentString .= "&lt;/object&gt;";		
                        $sAttachmentString .= "&lt;a href='".$mp3-&gt;guid."'&gt;Download&lt;/a&gt;";
			$sAttachmentString .= "&lt;/li&gt;";
		endforeach;
	$sAttachmentString .= "&lt;/ul&gt;";
	endif;	
$sAttachmentString .= "&lt;/div&gt;";
if($echo){
    echo $sAttachmentString;
  }
  return $sAttachmentString;
}
add_shortcode('attachment icons', 'get_attachment_icons');</code></pre>
]]></content:encoded>
			<wfw:commentRss>http://tgrayimages.com/automate-file-attachments-on-your-wordpress-posts/feed/</wfw:commentRss>
		<slash:comments>39</slash:comments>
		</item>
		<item>
		<title>Christmas Morning 2009</title>
		<link>http://tgrayimages.com/christmas-morning/</link>
		<comments>http://tgrayimages.com/christmas-morning/#comments</comments>
		<pubDate>Fri, 25 Dec 2009 14:00:10 +0000</pubDate>
		<dc:creator>Tony</dc:creator>
				<category><![CDATA[Photos]]></category>

		<guid isPermaLink="false">http://www.tgrayimages.com/?p=859</guid>
		<description><![CDATA[The Kids opening gifts on Christmas morning.]]></description>
				<content:encoded><![CDATA[
<a href='http://tgrayimages.com/christmas-morning/img_0180/' title='IMG_0180'><img data-attachment-id="865" data-orig-file="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0180.jpg?resize=2272%2C1704" data-orig-size="2272,1704" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.6&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon PowerShot A520&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1261700951&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;5.8125&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0.0166666666667&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_0180" data-image-description="" data-medium-file="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0180.jpg?fit=530%2C2000" data-large-file="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0180.jpg?fit=1000%2C3000" src="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0180.jpg?resize=125%2C125" class="attachment-thumbnail" alt="IMG_0180" /></a>
<a href='http://tgrayimages.com/christmas-morning/img_0221/' title='IMG_0221'><img data-attachment-id="906" data-orig-file="http://i0.wp.com/tgrayimages.com/media/2009/12/IMG_0221.jpg?resize=2272%2C1704" data-orig-size="2272,1704" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.6&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon PowerShot A520&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1261738757&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;5.8125&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0.0166666666667&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_0221" data-image-description="" data-medium-file="http://i0.wp.com/tgrayimages.com/media/2009/12/IMG_0221.jpg?fit=530%2C2000" data-large-file="http://i0.wp.com/tgrayimages.com/media/2009/12/IMG_0221.jpg?fit=1000%2C3000" src="http://i0.wp.com/tgrayimages.com/media/2009/12/IMG_0221.jpg?resize=125%2C125" class="attachment-thumbnail" alt="IMG_0221" /></a>
<a href='http://tgrayimages.com/christmas-morning/img_0220/' title='IMG_0220'><img data-attachment-id="905" data-orig-file="http://i0.wp.com/tgrayimages.com/media/2009/12/IMG_0220.jpg?resize=2272%2C1704" data-orig-size="2272,1704" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.6&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon PowerShot A520&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1261738741&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;5.8125&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0.0166666666667&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_0220" data-image-description="" data-medium-file="http://i0.wp.com/tgrayimages.com/media/2009/12/IMG_0220.jpg?fit=530%2C2000" data-large-file="http://i0.wp.com/tgrayimages.com/media/2009/12/IMG_0220.jpg?fit=1000%2C3000" src="http://i0.wp.com/tgrayimages.com/media/2009/12/IMG_0220.jpg?resize=125%2C125" class="attachment-thumbnail" alt="IMG_0220" /></a>
<a href='http://tgrayimages.com/christmas-morning/img_0219/' title='IMG_0219'><img data-attachment-id="904" data-orig-file="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0219.jpg?resize=1704%2C2272" data-orig-size="1704,2272" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.6&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon PowerShot A520&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1261738546&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;5.8125&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0.0166666666667&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_0219" data-image-description="" data-medium-file="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0219.jpg?fit=530%2C2000" data-large-file="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0219.jpg?fit=1000%2C3000" src="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0219.jpg?resize=125%2C125" class="attachment-thumbnail" alt="IMG_0219" /></a>
<a href='http://tgrayimages.com/christmas-morning/img_0218/' title='Holden and Wendy'><img data-attachment-id="903" data-orig-file="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0218.jpg?resize=2272%2C1704" data-orig-size="2272,1704" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.6&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon PowerShot A520&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1261737097&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;5.8125&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0.0166666666667&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="Holden and Wendy" data-image-description="" data-medium-file="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0218.jpg?fit=530%2C2000" data-large-file="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0218.jpg?fit=1000%2C3000" src="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0218.jpg?resize=125%2C125" class="attachment-thumbnail" alt="Holden and Wendy" /></a>
<a href='http://tgrayimages.com/christmas-morning/img_0217/' title='IMG_0217'><img data-attachment-id="902" data-orig-file="http://i0.wp.com/tgrayimages.com/media/2009/12/IMG_0217.jpg?resize=2272%2C1704" data-orig-size="2272,1704" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.6&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon PowerShot A520&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1261737052&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;5.8125&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0.0166666666667&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_0217" data-image-description="" data-medium-file="http://i0.wp.com/tgrayimages.com/media/2009/12/IMG_0217.jpg?fit=530%2C2000" data-large-file="http://i0.wp.com/tgrayimages.com/media/2009/12/IMG_0217.jpg?fit=1000%2C3000" src="http://i0.wp.com/tgrayimages.com/media/2009/12/IMG_0217.jpg?resize=125%2C125" class="attachment-thumbnail" alt="IMG_0217" /></a>
<a href='http://tgrayimages.com/christmas-morning/img_0216/' title='IMG_0216'><img data-attachment-id="901" data-orig-file="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0216.jpg?resize=1704%2C2272" data-orig-size="1704,2272" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.6&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon PowerShot A520&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1261736932&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;5.8125&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0.0166666666667&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_0216" data-image-description="" data-medium-file="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0216.jpg?fit=530%2C2000" data-large-file="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0216.jpg?fit=1000%2C3000" src="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0216.jpg?resize=125%2C125" class="attachment-thumbnail" alt="IMG_0216" /></a>
<a href='http://tgrayimages.com/christmas-morning/img_0215/' title='IMG_0215'><img data-attachment-id="900" data-orig-file="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0215.jpg?resize=2272%2C1704" data-orig-size="2272,1704" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.6&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon PowerShot A520&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1261736778&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;5.8125&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0.0166666666667&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_0215" data-image-description="" data-medium-file="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0215.jpg?fit=530%2C2000" data-large-file="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0215.jpg?fit=1000%2C3000" src="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0215.jpg?resize=125%2C125" class="attachment-thumbnail" alt="IMG_0215" /></a>
<a href='http://tgrayimages.com/christmas-morning/img_0214/' title='IMG_0214'><img data-attachment-id="899" data-orig-file="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0214.jpg?resize=2272%2C1704" data-orig-size="2272,1704" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.6&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon PowerShot A520&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1261736606&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;5.8125&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0.0166666666667&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_0214" data-image-description="" data-medium-file="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0214.jpg?fit=530%2C2000" data-large-file="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0214.jpg?fit=1000%2C3000" src="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0214.jpg?resize=125%2C125" class="attachment-thumbnail" alt="IMG_0214" /></a>
<a href='http://tgrayimages.com/christmas-morning/img_0213/' title='IMG_0213'><img data-attachment-id="898" data-orig-file="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0213.jpg?resize=2272%2C1704" data-orig-size="2272,1704" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.6&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon PowerShot A520&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1261736591&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;5.8125&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0.0166666666667&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_0213" data-image-description="" data-medium-file="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0213.jpg?fit=530%2C2000" data-large-file="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0213.jpg?fit=1000%2C3000" src="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0213.jpg?resize=125%2C125" class="attachment-thumbnail" alt="IMG_0213" /></a>
<a href='http://tgrayimages.com/christmas-morning/img_0212/' title='IMG_0212'><img data-attachment-id="897" data-orig-file="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0212.jpg?resize=2272%2C1704" data-orig-size="2272,1704" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.6&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon PowerShot A520&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1261736579&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;5.8125&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0.0166666666667&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_0212" data-image-description="" data-medium-file="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0212.jpg?fit=530%2C2000" data-large-file="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0212.jpg?fit=1000%2C3000" src="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0212.jpg?resize=125%2C125" class="attachment-thumbnail" alt="IMG_0212" /></a>
<a href='http://tgrayimages.com/christmas-morning/img_0211/' title='IMG_0211'><img data-attachment-id="896" data-orig-file="http://i0.wp.com/tgrayimages.com/media/2009/12/IMG_0211.jpg?resize=2272%2C1704" data-orig-size="2272,1704" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.6&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon PowerShot A520&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1261736415&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;5.8125&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0.0166666666667&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_0211" data-image-description="" data-medium-file="http://i0.wp.com/tgrayimages.com/media/2009/12/IMG_0211.jpg?fit=530%2C2000" data-large-file="http://i0.wp.com/tgrayimages.com/media/2009/12/IMG_0211.jpg?fit=1000%2C3000" src="http://i0.wp.com/tgrayimages.com/media/2009/12/IMG_0211.jpg?resize=125%2C125" class="attachment-thumbnail" alt="IMG_0211" /></a>
<a href='http://tgrayimages.com/christmas-morning/img_0210/' title='IMG_0210'><img data-attachment-id="895" data-orig-file="http://i0.wp.com/tgrayimages.com/media/2009/12/IMG_0210.jpg?resize=2272%2C1704" data-orig-size="2272,1704" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.6&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon PowerShot A520&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1261736330&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;5.8125&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0.0166666666667&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_0210" data-image-description="" data-medium-file="http://i0.wp.com/tgrayimages.com/media/2009/12/IMG_0210.jpg?fit=530%2C2000" data-large-file="http://i0.wp.com/tgrayimages.com/media/2009/12/IMG_0210.jpg?fit=1000%2C3000" src="http://i0.wp.com/tgrayimages.com/media/2009/12/IMG_0210.jpg?resize=125%2C125" class="attachment-thumbnail" alt="IMG_0210" /></a>
<a href='http://tgrayimages.com/christmas-morning/img_0209/' title='IMG_0209'><img data-attachment-id="894" data-orig-file="http://i0.wp.com/tgrayimages.com/media/2009/12/IMG_0209.jpg?resize=2272%2C1704" data-orig-size="2272,1704" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.6&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon PowerShot A520&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1261736207&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;5.8125&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0.0166666666667&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_0209" data-image-description="" data-medium-file="http://i0.wp.com/tgrayimages.com/media/2009/12/IMG_0209.jpg?fit=530%2C2000" data-large-file="http://i0.wp.com/tgrayimages.com/media/2009/12/IMG_0209.jpg?fit=1000%2C3000" src="http://i0.wp.com/tgrayimages.com/media/2009/12/IMG_0209.jpg?resize=125%2C125" class="attachment-thumbnail" alt="IMG_0209" /></a>
<a href='http://tgrayimages.com/christmas-morning/img_0208/' title='IMG_0208'><img data-attachment-id="893" data-orig-file="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0208.jpg?resize=2272%2C1704" data-orig-size="2272,1704" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.6&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon PowerShot A520&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1261736193&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;5.8125&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0.0166666666667&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_0208" data-image-description="" data-medium-file="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0208.jpg?fit=530%2C2000" data-large-file="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0208.jpg?fit=1000%2C3000" src="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0208.jpg?resize=125%2C125" class="attachment-thumbnail" alt="IMG_0208" /></a>
<a href='http://tgrayimages.com/christmas-morning/img_0207/' title='IMG_0207'><img data-attachment-id="892" data-orig-file="http://i0.wp.com/tgrayimages.com/media/2009/12/IMG_0207.jpg?resize=2272%2C1704" data-orig-size="2272,1704" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;3.5&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon PowerShot A520&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1261735719&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;11.8125&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0.0166666666667&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_0207" data-image-description="" data-medium-file="http://i0.wp.com/tgrayimages.com/media/2009/12/IMG_0207.jpg?fit=530%2C2000" data-large-file="http://i0.wp.com/tgrayimages.com/media/2009/12/IMG_0207.jpg?fit=1000%2C3000" src="http://i0.wp.com/tgrayimages.com/media/2009/12/IMG_0207.jpg?resize=125%2C125" class="attachment-thumbnail" alt="IMG_0207" /></a>
<a href='http://tgrayimages.com/christmas-morning/img_0206/' title='IMG_0206'><img data-attachment-id="891" data-orig-file="http://i0.wp.com/tgrayimages.com/media/2009/12/IMG_0206.jpg?resize=2272%2C1704" data-orig-size="2272,1704" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;3.5&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon PowerShot A520&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1261735701&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;11.8125&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0.0166666666667&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_0206" data-image-description="" data-medium-file="http://i0.wp.com/tgrayimages.com/media/2009/12/IMG_0206.jpg?fit=530%2C2000" data-large-file="http://i0.wp.com/tgrayimages.com/media/2009/12/IMG_0206.jpg?fit=1000%2C3000" src="http://i0.wp.com/tgrayimages.com/media/2009/12/IMG_0206.jpg?resize=125%2C125" class="attachment-thumbnail" alt="IMG_0206" /></a>
<a href='http://tgrayimages.com/christmas-morning/img_0205/' title='IMG_0205'><img data-attachment-id="890" data-orig-file="http://i0.wp.com/tgrayimages.com/media/2009/12/IMG_0205.jpg?resize=2272%2C1704" data-orig-size="2272,1704" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.6&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon PowerShot A520&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1261735680&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;5.8125&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0.0166666666667&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_0205" data-image-description="" data-medium-file="http://i0.wp.com/tgrayimages.com/media/2009/12/IMG_0205.jpg?fit=530%2C2000" data-large-file="http://i0.wp.com/tgrayimages.com/media/2009/12/IMG_0205.jpg?fit=1000%2C3000" src="http://i0.wp.com/tgrayimages.com/media/2009/12/IMG_0205.jpg?resize=125%2C125" class="attachment-thumbnail" alt="IMG_0205" /></a>
<a href='http://tgrayimages.com/christmas-morning/img_0204/' title='IMG_0204'><img data-attachment-id="889" data-orig-file="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0204.jpg?resize=2272%2C1704" data-orig-size="2272,1704" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.6&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon PowerShot A520&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1261735656&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;5.8125&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0.0166666666667&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_0204" data-image-description="" data-medium-file="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0204.jpg?fit=530%2C2000" data-large-file="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0204.jpg?fit=1000%2C3000" src="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0204.jpg?resize=125%2C125" class="attachment-thumbnail" alt="IMG_0204" /></a>
<a href='http://tgrayimages.com/christmas-morning/img_0203/' title='IMG_0203'><img data-attachment-id="888" data-orig-file="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0203.jpg?resize=2272%2C1704" data-orig-size="2272,1704" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.6&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon PowerShot A520&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1261735616&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;5.8125&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0.0166666666667&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_0203" data-image-description="" data-medium-file="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0203.jpg?fit=530%2C2000" data-large-file="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0203.jpg?fit=1000%2C3000" src="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0203.jpg?resize=125%2C125" class="attachment-thumbnail" alt="IMG_0203" /></a>
<a href='http://tgrayimages.com/christmas-morning/img_0202/' title='IMG_0202'><img data-attachment-id="887" data-orig-file="http://i0.wp.com/tgrayimages.com/media/2009/12/IMG_0202.jpg?resize=2272%2C1704" data-orig-size="2272,1704" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.6&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon PowerShot A520&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1261735605&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;5.8125&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0.0166666666667&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_0202" data-image-description="" data-medium-file="http://i0.wp.com/tgrayimages.com/media/2009/12/IMG_0202.jpg?fit=530%2C2000" data-large-file="http://i0.wp.com/tgrayimages.com/media/2009/12/IMG_0202.jpg?fit=1000%2C3000" src="http://i0.wp.com/tgrayimages.com/media/2009/12/IMG_0202.jpg?resize=125%2C125" class="attachment-thumbnail" alt="IMG_0202" /></a>
<a href='http://tgrayimages.com/christmas-morning/img_0201/' title='IMG_0201'><img data-attachment-id="886" data-orig-file="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0201.jpg?resize=2272%2C1704" data-orig-size="2272,1704" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.6&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon PowerShot A520&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1261735345&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;5.8125&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0.0166666666667&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_0201" data-image-description="" data-medium-file="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0201.jpg?fit=530%2C2000" data-large-file="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0201.jpg?fit=1000%2C3000" src="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0201.jpg?resize=125%2C125" class="attachment-thumbnail" alt="IMG_0201" /></a>
<a href='http://tgrayimages.com/christmas-morning/img_0200/' title='IMG_0200'><img data-attachment-id="885" data-orig-file="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0200.jpg?resize=1704%2C2272" data-orig-size="1704,2272" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.6&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon PowerShot A520&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1261735261&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;5.8125&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0.0166666666667&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_0200" data-image-description="" data-medium-file="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0200.jpg?fit=530%2C2000" data-large-file="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0200.jpg?fit=1000%2C3000" src="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0200.jpg?resize=125%2C125" class="attachment-thumbnail" alt="IMG_0200" /></a>
<a href='http://tgrayimages.com/christmas-morning/img_0199/' title='IMG_0199'><img data-attachment-id="884" data-orig-file="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0199.jpg?resize=2272%2C1704" data-orig-size="2272,1704" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.6&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon PowerShot A520&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1261735175&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;5.8125&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0.0166666666667&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_0199" data-image-description="" data-medium-file="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0199.jpg?fit=530%2C2000" data-large-file="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0199.jpg?fit=1000%2C3000" src="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0199.jpg?resize=125%2C125" class="attachment-thumbnail" alt="IMG_0199" /></a>
<a href='http://tgrayimages.com/christmas-morning/img_0198/' title='IMG_0198'><img data-attachment-id="883" data-orig-file="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0198.jpg?resize=2272%2C1704" data-orig-size="2272,1704" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.6&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon PowerShot A520&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1261735087&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;5.8125&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0.0166666666667&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_0198" data-image-description="" data-medium-file="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0198.jpg?fit=530%2C2000" data-large-file="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0198.jpg?fit=1000%2C3000" src="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0198.jpg?resize=125%2C125" class="attachment-thumbnail" alt="IMG_0198" /></a>
<a href='http://tgrayimages.com/christmas-morning/img_0197/' title='IMG_0197'><img data-attachment-id="882" data-orig-file="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0197.jpg?resize=2272%2C1704" data-orig-size="2272,1704" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.6&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon PowerShot A520&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1261702314&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;5.8125&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0.0166666666667&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_0197" data-image-description="" data-medium-file="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0197.jpg?fit=530%2C2000" data-large-file="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0197.jpg?fit=1000%2C3000" src="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0197.jpg?resize=125%2C125" class="attachment-thumbnail" alt="IMG_0197" /></a>
<a href='http://tgrayimages.com/christmas-morning/img_0196/' title='IMG_0196'><img data-attachment-id="881" data-orig-file="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0196.jpg?resize=2272%2C1704" data-orig-size="2272,1704" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.6&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon PowerShot A520&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1261702296&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;5.8125&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0.0166666666667&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_0196" data-image-description="" data-medium-file="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0196.jpg?fit=530%2C2000" data-large-file="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0196.jpg?fit=1000%2C3000" src="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0196.jpg?resize=125%2C125" class="attachment-thumbnail" alt="IMG_0196" /></a>
<a href='http://tgrayimages.com/christmas-morning/img_0195/' title='IMG_0195'><img data-attachment-id="880" data-orig-file="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0195.jpg?resize=2272%2C1704" data-orig-size="2272,1704" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.6&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon PowerShot A520&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1261702284&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;5.8125&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0.0166666666667&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_0195" data-image-description="" data-medium-file="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0195.jpg?fit=530%2C2000" data-large-file="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0195.jpg?fit=1000%2C3000" src="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0195.jpg?resize=125%2C125" class="attachment-thumbnail" alt="IMG_0195" /></a>
<a href='http://tgrayimages.com/christmas-morning/img_0194/' title='IMG_0194'><img data-attachment-id="879" data-orig-file="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0194.jpg?resize=2272%2C1704" data-orig-size="2272,1704" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.6&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon PowerShot A520&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1261702206&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;5.8125&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0.0166666666667&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_0194" data-image-description="" data-medium-file="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0194.jpg?fit=530%2C2000" data-large-file="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0194.jpg?fit=1000%2C3000" src="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0194.jpg?resize=125%2C125" class="attachment-thumbnail" alt="IMG_0194" /></a>
<a href='http://tgrayimages.com/christmas-morning/img_0193/' title='IMG_0193'><img data-attachment-id="878" data-orig-file="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0193.jpg?resize=2272%2C1704" data-orig-size="2272,1704" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.6&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon PowerShot A520&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1261702194&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;5.8125&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0.0166666666667&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_0193" data-image-description="" data-medium-file="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0193.jpg?fit=530%2C2000" data-large-file="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0193.jpg?fit=1000%2C3000" src="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0193.jpg?resize=125%2C125" class="attachment-thumbnail" alt="IMG_0193" /></a>
<a href='http://tgrayimages.com/christmas-morning/img_0192/' title='IMG_0192'><img data-attachment-id="877" data-orig-file="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0192.jpg?resize=1704%2C2272" data-orig-size="1704,2272" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;4&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon PowerShot A520&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1261701777&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;13.8125&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0.0166666666667&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_0192" data-image-description="" data-medium-file="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0192.jpg?fit=530%2C2000" data-large-file="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0192.jpg?fit=1000%2C3000" src="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0192.jpg?resize=125%2C125" class="attachment-thumbnail" alt="IMG_0192" /></a>
<a href='http://tgrayimages.com/christmas-morning/img_0191/' title='IMG_0191'><img data-attachment-id="876" data-orig-file="http://i0.wp.com/tgrayimages.com/media/2009/12/IMG_0191.jpg?resize=2272%2C1704" data-orig-size="2272,1704" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;3.5&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon PowerShot A520&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1261701517&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;11.8125&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0.0166666666667&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_0191" data-image-description="" data-medium-file="http://i0.wp.com/tgrayimages.com/media/2009/12/IMG_0191.jpg?fit=530%2C2000" data-large-file="http://i0.wp.com/tgrayimages.com/media/2009/12/IMG_0191.jpg?fit=1000%2C3000" src="http://i0.wp.com/tgrayimages.com/media/2009/12/IMG_0191.jpg?resize=125%2C125" class="attachment-thumbnail" alt="IMG_0191" /></a>
<a href='http://tgrayimages.com/christmas-morning/img_0190/' title='IMG_0190'><img data-attachment-id="875" data-orig-file="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0190.jpg?resize=2272%2C1704" data-orig-size="2272,1704" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.6&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon PowerShot A520&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1261701501&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;5.8125&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0.0166666666667&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_0190" data-image-description="" data-medium-file="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0190.jpg?fit=530%2C2000" data-large-file="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0190.jpg?fit=1000%2C3000" src="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0190.jpg?resize=125%2C125" class="attachment-thumbnail" alt="IMG_0190" /></a>
<a href='http://tgrayimages.com/christmas-morning/img_0189/' title='IMG_0189'><img data-attachment-id="874" data-orig-file="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0189.jpg?resize=1704%2C2272" data-orig-size="1704,2272" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.6&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon PowerShot A520&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1261701251&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;5.8125&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0.0166666666667&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_0189" data-image-description="" data-medium-file="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0189.jpg?fit=530%2C2000" data-large-file="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0189.jpg?fit=1000%2C3000" src="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0189.jpg?resize=125%2C125" class="attachment-thumbnail" alt="IMG_0189" /></a>
<a href='http://tgrayimages.com/christmas-morning/img_0188/' title='IMG_0188'><img data-attachment-id="873" data-orig-file="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0188.jpg?resize=2272%2C1704" data-orig-size="2272,1704" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.6&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon PowerShot A520&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1261701172&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;5.8125&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0.0166666666667&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_0188" data-image-description="" data-medium-file="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0188.jpg?fit=530%2C2000" data-large-file="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0188.jpg?fit=1000%2C3000" src="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0188.jpg?resize=125%2C125" class="attachment-thumbnail" alt="IMG_0188" /></a>
<a href='http://tgrayimages.com/christmas-morning/img_0187/' title='IMG_0187'><img data-attachment-id="872" data-orig-file="http://i0.wp.com/tgrayimages.com/media/2009/12/IMG_0187.jpg?resize=2272%2C1704" data-orig-size="2272,1704" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.6&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon PowerShot A520&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1261701151&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;5.8125&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0.0166666666667&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_0187" data-image-description="" data-medium-file="http://i0.wp.com/tgrayimages.com/media/2009/12/IMG_0187.jpg?fit=530%2C2000" data-large-file="http://i0.wp.com/tgrayimages.com/media/2009/12/IMG_0187.jpg?fit=1000%2C3000" src="http://i0.wp.com/tgrayimages.com/media/2009/12/IMG_0187.jpg?resize=125%2C125" class="attachment-thumbnail" alt="IMG_0187" /></a>
<a href='http://tgrayimages.com/christmas-morning/img_0186/' title='IMG_0186'><img data-attachment-id="871" data-orig-file="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0186.jpg?resize=2272%2C1704" data-orig-size="2272,1704" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.6&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon PowerShot A520&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1261701123&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;5.8125&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0.0166666666667&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_0186" data-image-description="" data-medium-file="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0186.jpg?fit=530%2C2000" data-large-file="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0186.jpg?fit=1000%2C3000" src="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0186.jpg?resize=125%2C125" class="attachment-thumbnail" alt="IMG_0186" /></a>
<a href='http://tgrayimages.com/christmas-morning/img_0185/' title='IMG_0185'><img data-attachment-id="870" data-orig-file="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0185.jpg?resize=2272%2C1704" data-orig-size="2272,1704" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.6&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon PowerShot A520&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1261701041&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;5.8125&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0.0166666666667&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_0185" data-image-description="" data-medium-file="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0185.jpg?fit=530%2C2000" data-large-file="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0185.jpg?fit=1000%2C3000" src="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0185.jpg?resize=125%2C125" class="attachment-thumbnail" alt="IMG_0185" /></a>
<a href='http://tgrayimages.com/christmas-morning/img_0184/' title='IMG_0184'><img data-attachment-id="869" data-orig-file="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0184.jpg?resize=2272%2C1704" data-orig-size="2272,1704" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.6&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon PowerShot A520&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1261701000&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;5.8125&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0.0166666666667&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_0184" data-image-description="" data-medium-file="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0184.jpg?fit=530%2C2000" data-large-file="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0184.jpg?fit=1000%2C3000" src="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0184.jpg?resize=125%2C125" class="attachment-thumbnail" alt="IMG_0184" /></a>
<a href='http://tgrayimages.com/christmas-morning/img_0183/' title='IMG_0183'><img data-attachment-id="868" data-orig-file="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0183.jpg?resize=2272%2C1704" data-orig-size="2272,1704" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.6&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon PowerShot A520&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1261700990&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;5.8125&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0.0166666666667&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_0183" data-image-description="" data-medium-file="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0183.jpg?fit=530%2C2000" data-large-file="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0183.jpg?fit=1000%2C3000" src="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0183.jpg?resize=125%2C125" class="attachment-thumbnail" alt="IMG_0183" /></a>
<a href='http://tgrayimages.com/christmas-morning/img_0182/' title='IMG_0182'><img data-attachment-id="867" data-orig-file="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0182.jpg?resize=2272%2C1704" data-orig-size="2272,1704" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.6&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon PowerShot A520&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1261700970&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;5.8125&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0.0166666666667&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_0182" data-image-description="" data-medium-file="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0182.jpg?fit=530%2C2000" data-large-file="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0182.jpg?fit=1000%2C3000" src="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0182.jpg?resize=125%2C125" class="attachment-thumbnail" alt="IMG_0182" /></a>
<a href='http://tgrayimages.com/christmas-morning/img_0181/' title='IMG_0181'><img data-attachment-id="866" data-orig-file="http://i0.wp.com/tgrayimages.com/media/2009/12/IMG_0181.jpg?resize=2272%2C1704" data-orig-size="2272,1704" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.6&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon PowerShot A520&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1261700961&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;5.8125&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0.0166666666667&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_0181" data-image-description="" data-medium-file="http://i0.wp.com/tgrayimages.com/media/2009/12/IMG_0181.jpg?fit=530%2C2000" data-large-file="http://i0.wp.com/tgrayimages.com/media/2009/12/IMG_0181.jpg?fit=1000%2C3000" src="http://i0.wp.com/tgrayimages.com/media/2009/12/IMG_0181.jpg?resize=125%2C125" class="attachment-thumbnail" alt="IMG_0181" /></a>
<a href='http://tgrayimages.com/christmas-morning/img_0179/' title='IMG_0179'><img data-attachment-id="864" data-orig-file="http://i0.wp.com/tgrayimages.com/media/2009/12/IMG_0179.jpg?resize=2272%2C1704" data-orig-size="2272,1704" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.6&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon PowerShot A520&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1261700935&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;5.8125&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0.0166666666667&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_0179" data-image-description="" data-medium-file="http://i0.wp.com/tgrayimages.com/media/2009/12/IMG_0179.jpg?fit=530%2C2000" data-large-file="http://i0.wp.com/tgrayimages.com/media/2009/12/IMG_0179.jpg?fit=1000%2C3000" src="http://i0.wp.com/tgrayimages.com/media/2009/12/IMG_0179.jpg?resize=125%2C125" class="attachment-thumbnail" alt="IMG_0179" /></a>
<a href='http://tgrayimages.com/christmas-morning/img_0178/' title='IMG_0178'><img data-attachment-id="863" data-orig-file="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0178.jpg?resize=2272%2C1704" data-orig-size="2272,1704" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.6&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon PowerShot A520&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1261700918&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;5.8125&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0.3&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_0178" data-image-description="" data-medium-file="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0178.jpg?fit=530%2C2000" data-large-file="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0178.jpg?fit=1000%2C3000" src="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0178.jpg?resize=125%2C125" class="attachment-thumbnail" alt="IMG_0178" /></a>

]]></content:encoded>
			<wfw:commentRss>http://tgrayimages.com/christmas-morning/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>If I only had a dollar for eve&#8230;</title>
		<link>http://tgrayimages.com/if-i-only-had-a-dollar-for-eve/</link>
		<comments>http://tgrayimages.com/if-i-only-had-a-dollar-for-eve/#comments</comments>
		<pubDate>Mon, 21 Dec 2009 23:36:05 +0000</pubDate>
		<dc:creator>Tony</dc:creator>
				<category><![CDATA[Tweets]]></category>

		<guid isPermaLink="false">http://www.tgrayimages.com/tweets/if-i-only-had-a-dollar-for-eve/</guid>
		<description><![CDATA[If I only had a dollar for every mile http://flic.kr/p/7pv9wR]]></description>
				<content:encoded><![CDATA[<p>If I only had a dollar for every mile <a href="http://flic.kr/p/7pv9wR" rel="nofollow">http://flic.kr/p/7pv9wR</a></p>
]]></content:encoded>
			<wfw:commentRss>http://tgrayimages.com/if-i-only-had-a-dollar-for-eve/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Http://flickr4twitter.com test&#8230;</title>
		<link>http://tgrayimages.com/httpflickr4twitter-com-test/</link>
		<comments>http://tgrayimages.com/httpflickr4twitter-com-test/#comments</comments>
		<pubDate>Sat, 12 Dec 2009 05:06:49 +0000</pubDate>
		<dc:creator>Tony</dc:creator>
				<category><![CDATA[Tweets]]></category>

		<guid isPermaLink="false">http://www.tgrayimages.com/tweets/httpflickr4twitter-com-test/</guid>
		<description><![CDATA[Http://flickr4twitter.com test http://flic.kr/p/7n9VQD]]></description>
				<content:encoded><![CDATA[<p>Http://flickr4twitter.com test <a href="http://flic.kr/p/7n9VQD" rel="nofollow">http://flic.kr/p/7n9VQD</a></p>
]]></content:encoded>
			<wfw:commentRss>http://tgrayimages.com/httpflickr4twitter-com-test/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Putting up the Christmas Tree</title>
		<link>http://tgrayimages.com/putting-up-the-christmas-tree/</link>
		<comments>http://tgrayimages.com/putting-up-the-christmas-tree/#comments</comments>
		<pubDate>Tue, 08 Dec 2009 01:09:40 +0000</pubDate>
		<dc:creator>Tony</dc:creator>
				<category><![CDATA[Photos]]></category>

		<guid isPermaLink="false">http://www.tgrayimages.com/?p=713</guid>
		<description><![CDATA[]]></description>
				<content:encoded><![CDATA[
<a href='http://tgrayimages.com/putting-up-the-christmas-tree/img_0106/' title='IMG_0106'><img data-attachment-id="925" data-orig-file="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0106.jpg?resize=1704%2C2272" data-orig-size="1704,2272" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.6&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon PowerShot A520&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1260391077&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;5.8125&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0.0166666666667&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_0106" data-image-description="" data-medium-file="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0106.jpg?fit=530%2C2000" data-large-file="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0106.jpg?fit=1000%2C3000" src="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0106.jpg?resize=125%2C125" class="attachment-thumbnail" alt="IMG_0106" /></a>
<a href='http://tgrayimages.com/putting-up-the-christmas-tree/img_0107/' title='IMG_0107'><img data-attachment-id="926" data-orig-file="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0107.jpg?resize=1704%2C2272" data-orig-size="1704,2272" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.6&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon PowerShot A520&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1260391099&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;5.8125&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0.125&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_0107" data-image-description="" data-medium-file="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0107.jpg?fit=530%2C2000" data-large-file="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0107.jpg?fit=1000%2C3000" src="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0107.jpg?resize=125%2C125" class="attachment-thumbnail" alt="IMG_0107" /></a>
<a href='http://tgrayimages.com/putting-up-the-christmas-tree/img_0108/' title='IMG_0108'><img data-attachment-id="927" data-orig-file="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0108.jpg?resize=2272%2C1704" data-orig-size="2272,1704" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.6&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon PowerShot A520&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1260391114&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;5.8125&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0.125&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_0108" data-image-description="" data-medium-file="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0108.jpg?fit=530%2C2000" data-large-file="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0108.jpg?fit=1000%2C3000" src="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0108.jpg?resize=125%2C125" class="attachment-thumbnail" alt="IMG_0108" /></a>
<a href='http://tgrayimages.com/putting-up-the-christmas-tree/img_0109/' title='IMG_0109'><img data-attachment-id="928" data-orig-file="http://i0.wp.com/tgrayimages.com/media/2009/12/IMG_0109.jpg?resize=2272%2C1704" data-orig-size="2272,1704" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.6&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon PowerShot A520&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1260391123&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;5.8125&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0.125&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_0109" data-image-description="" data-medium-file="http://i0.wp.com/tgrayimages.com/media/2009/12/IMG_0109.jpg?fit=530%2C2000" data-large-file="http://i0.wp.com/tgrayimages.com/media/2009/12/IMG_0109.jpg?fit=1000%2C3000" src="http://i0.wp.com/tgrayimages.com/media/2009/12/IMG_0109.jpg?resize=125%2C125" class="attachment-thumbnail" alt="IMG_0109" /></a>
<a href='http://tgrayimages.com/putting-up-the-christmas-tree/img_0110/' title='IMG_0110'><img data-attachment-id="929" data-orig-file="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0110.jpg?resize=2272%2C1704" data-orig-size="2272,1704" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.6&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon PowerShot A520&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1260391136&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;5.8125&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0.125&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_0110" data-image-description="" data-medium-file="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0110.jpg?fit=530%2C2000" data-large-file="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0110.jpg?fit=1000%2C3000" src="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0110.jpg?resize=125%2C125" class="attachment-thumbnail" alt="IMG_0110" /></a>
<a href='http://tgrayimages.com/putting-up-the-christmas-tree/img_0111/' title='IMG_0111'><img data-attachment-id="930" data-orig-file="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0111.jpg?resize=2272%2C1704" data-orig-size="2272,1704" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.6&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon PowerShot A520&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1260391152&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;5.8125&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0.125&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_0111" data-image-description="" data-medium-file="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0111.jpg?fit=530%2C2000" data-large-file="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0111.jpg?fit=1000%2C3000" src="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0111.jpg?resize=125%2C125" class="attachment-thumbnail" alt="IMG_0111" /></a>
<a href='http://tgrayimages.com/putting-up-the-christmas-tree/img_0112/' title='IMG_0112'><img data-attachment-id="931" data-orig-file="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0112.jpg?resize=2272%2C1704" data-orig-size="2272,1704" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.6&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon PowerShot A520&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1260391168&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;5.8125&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0.125&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_0112" data-image-description="" data-medium-file="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0112.jpg?fit=530%2C2000" data-large-file="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0112.jpg?fit=1000%2C3000" src="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0112.jpg?resize=125%2C125" class="attachment-thumbnail" alt="IMG_0112" /></a>
<a href='http://tgrayimages.com/putting-up-the-christmas-tree/img_0113/' title='IMG_0113'><img data-attachment-id="932" data-orig-file="http://i0.wp.com/tgrayimages.com/media/2009/12/IMG_0113.jpg?resize=2272%2C1704" data-orig-size="2272,1704" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.6&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon PowerShot A520&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1260391209&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;5.8125&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0.125&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_0113" data-image-description="" data-medium-file="http://i0.wp.com/tgrayimages.com/media/2009/12/IMG_0113.jpg?fit=530%2C2000" data-large-file="http://i0.wp.com/tgrayimages.com/media/2009/12/IMG_0113.jpg?fit=1000%2C3000" src="http://i0.wp.com/tgrayimages.com/media/2009/12/IMG_0113.jpg?resize=125%2C125" class="attachment-thumbnail" alt="IMG_0113" /></a>
<a href='http://tgrayimages.com/putting-up-the-christmas-tree/img_0114/' title='IMG_0114'><img data-attachment-id="933" data-orig-file="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0114.jpg?resize=2272%2C1704" data-orig-size="2272,1704" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.6&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon PowerShot A520&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1260391222&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;5.8125&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0.0166666666667&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_0114" data-image-description="" data-medium-file="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0114.jpg?fit=530%2C2000" data-large-file="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0114.jpg?fit=1000%2C3000" src="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0114.jpg?resize=125%2C125" class="attachment-thumbnail" alt="IMG_0114" /></a>
<a href='http://tgrayimages.com/putting-up-the-christmas-tree/img_0115/' title='IMG_0115'><img data-attachment-id="934" data-orig-file="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0115.jpg?resize=1704%2C2272" data-orig-size="1704,2272" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.6&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon PowerShot A520&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1260391243&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;5.8125&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0.125&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_0115" data-image-description="" data-medium-file="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0115.jpg?fit=530%2C2000" data-large-file="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0115.jpg?fit=1000%2C3000" src="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0115.jpg?resize=125%2C125" class="attachment-thumbnail" alt="IMG_0115" /></a>
<a href='http://tgrayimages.com/putting-up-the-christmas-tree/img_0116/' title='IMG_0116'><img data-attachment-id="935" data-orig-file="http://i0.wp.com/tgrayimages.com/media/2009/12/IMG_0116.jpg?resize=2272%2C1704" data-orig-size="2272,1704" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.6&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon PowerShot A520&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1260391289&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;5.8125&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0.125&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_0116" data-image-description="" data-medium-file="http://i0.wp.com/tgrayimages.com/media/2009/12/IMG_0116.jpg?fit=530%2C2000" data-large-file="http://i0.wp.com/tgrayimages.com/media/2009/12/IMG_0116.jpg?fit=1000%2C3000" src="http://i0.wp.com/tgrayimages.com/media/2009/12/IMG_0116.jpg?resize=125%2C125" class="attachment-thumbnail" alt="IMG_0116" /></a>
<a href='http://tgrayimages.com/putting-up-the-christmas-tree/img_0117/' title='IMG_0117'><img data-attachment-id="936" data-orig-file="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0117.jpg?resize=2272%2C1704" data-orig-size="2272,1704" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.6&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon PowerShot A520&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1260391310&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;5.8125&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0.125&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_0117" data-image-description="" data-medium-file="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0117.jpg?fit=530%2C2000" data-large-file="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0117.jpg?fit=1000%2C3000" src="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0117.jpg?resize=125%2C125" class="attachment-thumbnail" alt="IMG_0117" /></a>
<a href='http://tgrayimages.com/putting-up-the-christmas-tree/img_0118/' title='IMG_0118'><img data-attachment-id="937" data-orig-file="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0118.jpg?resize=1704%2C2272" data-orig-size="1704,2272" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.6&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon PowerShot A520&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1260391330&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;5.8125&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0.125&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_0118" data-image-description="" data-medium-file="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0118.jpg?fit=530%2C2000" data-large-file="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0118.jpg?fit=1000%2C3000" src="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0118.jpg?resize=125%2C125" class="attachment-thumbnail" alt="IMG_0118" /></a>
<a href='http://tgrayimages.com/putting-up-the-christmas-tree/img_0119/' title='IMG_0119'><img data-attachment-id="938" data-orig-file="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0119.jpg?resize=2272%2C1704" data-orig-size="2272,1704" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.6&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon PowerShot A520&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1260391363&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;5.8125&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0.0166666666667&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_0119" data-image-description="" data-medium-file="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0119.jpg?fit=530%2C2000" data-large-file="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0119.jpg?fit=1000%2C3000" src="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0119.jpg?resize=125%2C125" class="attachment-thumbnail" alt="IMG_0119" /></a>
<a href='http://tgrayimages.com/putting-up-the-christmas-tree/img_0120/' title='IMG_0120'><img data-attachment-id="939" data-orig-file="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0120.jpg?resize=1704%2C2272" data-orig-size="1704,2272" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.6&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon PowerShot A520&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1260391419&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;5.8125&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0.125&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_0120" data-image-description="" data-medium-file="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0120.jpg?fit=530%2C2000" data-large-file="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0120.jpg?fit=1000%2C3000" src="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0120.jpg?resize=125%2C125" class="attachment-thumbnail" alt="IMG_0120" /></a>
<a href='http://tgrayimages.com/putting-up-the-christmas-tree/img_0121/' title='IMG_0121'><img data-attachment-id="940" data-orig-file="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0121.jpg?resize=1704%2C2272" data-orig-size="1704,2272" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.6&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon PowerShot A520&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1260391443&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;5.8125&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0.125&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_0121" data-image-description="" data-medium-file="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0121.jpg?fit=530%2C2000" data-large-file="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0121.jpg?fit=1000%2C3000" src="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0121.jpg?resize=125%2C125" class="attachment-thumbnail" alt="IMG_0121" /></a>
<a href='http://tgrayimages.com/putting-up-the-christmas-tree/img_0122/' title='IMG_0122'><img data-attachment-id="941" data-orig-file="http://i0.wp.com/tgrayimages.com/media/2009/12/IMG_0122.jpg?resize=2272%2C1704" data-orig-size="2272,1704" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.6&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon PowerShot A520&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1260391462&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;5.8125&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0.0166666666667&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_0122" data-image-description="" data-medium-file="http://i0.wp.com/tgrayimages.com/media/2009/12/IMG_0122.jpg?fit=530%2C2000" data-large-file="http://i0.wp.com/tgrayimages.com/media/2009/12/IMG_0122.jpg?fit=1000%2C3000" src="http://i0.wp.com/tgrayimages.com/media/2009/12/IMG_0122.jpg?resize=125%2C125" class="attachment-thumbnail" alt="IMG_0122" /></a>
<a href='http://tgrayimages.com/putting-up-the-christmas-tree/img_0123/' title='IMG_0123'><img data-attachment-id="942" data-orig-file="http://i0.wp.com/tgrayimages.com/media/2009/12/IMG_0123.jpg?resize=2272%2C1704" data-orig-size="2272,1704" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.6&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon PowerShot A520&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1260391484&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;5.8125&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0.0166666666667&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_0123" data-image-description="" data-medium-file="http://i0.wp.com/tgrayimages.com/media/2009/12/IMG_0123.jpg?fit=530%2C2000" data-large-file="http://i0.wp.com/tgrayimages.com/media/2009/12/IMG_0123.jpg?fit=1000%2C3000" src="http://i0.wp.com/tgrayimages.com/media/2009/12/IMG_0123.jpg?resize=125%2C125" class="attachment-thumbnail" alt="IMG_0123" /></a>
<a href='http://tgrayimages.com/putting-up-the-christmas-tree/img_0124/' title='IMG_0124'><img data-attachment-id="943" data-orig-file="http://i0.wp.com/tgrayimages.com/media/2009/12/IMG_0124.jpg?resize=2272%2C1704" data-orig-size="2272,1704" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.6&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon PowerShot A520&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1260391499&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;5.8125&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0.125&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_0124" data-image-description="" data-medium-file="http://i0.wp.com/tgrayimages.com/media/2009/12/IMG_0124.jpg?fit=530%2C2000" data-large-file="http://i0.wp.com/tgrayimages.com/media/2009/12/IMG_0124.jpg?fit=1000%2C3000" src="http://i0.wp.com/tgrayimages.com/media/2009/12/IMG_0124.jpg?resize=125%2C125" class="attachment-thumbnail" alt="IMG_0124" /></a>
<a href='http://tgrayimages.com/putting-up-the-christmas-tree/img_0125/' title='IMG_0125'><img data-attachment-id="944" data-orig-file="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0125.jpg?resize=2272%2C1704" data-orig-size="2272,1704" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.6&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon PowerShot A520&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1260391514&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;5.8125&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0.125&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_0125" data-image-description="" data-medium-file="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0125.jpg?fit=530%2C2000" data-large-file="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0125.jpg?fit=1000%2C3000" src="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0125.jpg?resize=125%2C125" class="attachment-thumbnail" alt="IMG_0125" /></a>
<a href='http://tgrayimages.com/putting-up-the-christmas-tree/img_0126/' title='IMG_0126'><img data-attachment-id="945" data-orig-file="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0126.jpg?resize=2272%2C1704" data-orig-size="2272,1704" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.6&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon PowerShot A520&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1260391526&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;5.8125&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0.125&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_0126" data-image-description="" data-medium-file="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0126.jpg?fit=530%2C2000" data-large-file="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0126.jpg?fit=1000%2C3000" src="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0126.jpg?resize=125%2C125" class="attachment-thumbnail" alt="IMG_0126" /></a>
<a href='http://tgrayimages.com/putting-up-the-christmas-tree/img_0127/' title='IMG_0127'><img data-attachment-id="946" data-orig-file="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0127.jpg?resize=2272%2C1704" data-orig-size="2272,1704" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.6&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon PowerShot A520&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1260391544&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;5.8125&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0.125&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_0127" data-image-description="" data-medium-file="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0127.jpg?fit=530%2C2000" data-large-file="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0127.jpg?fit=1000%2C3000" src="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0127.jpg?resize=125%2C125" class="attachment-thumbnail" alt="IMG_0127" /></a>
<a href='http://tgrayimages.com/putting-up-the-christmas-tree/img_0128/' title='IMG_0128'><img data-attachment-id="947" data-orig-file="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0128.jpg?resize=2272%2C1704" data-orig-size="2272,1704" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.6&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon PowerShot A520&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1260391561&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;5.8125&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0.0166666666667&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_0128" data-image-description="" data-medium-file="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0128.jpg?fit=530%2C2000" data-large-file="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0128.jpg?fit=1000%2C3000" src="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0128.jpg?resize=125%2C125" class="attachment-thumbnail" alt="IMG_0128" /></a>
<a href='http://tgrayimages.com/putting-up-the-christmas-tree/img_0129/' title='IMG_0129'><img data-attachment-id="948" data-orig-file="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0129.jpg?resize=2272%2C1704" data-orig-size="2272,1704" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;3.2&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon PowerShot A520&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1260391580&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;9.8125&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0.0166666666667&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_0129" data-image-description="" data-medium-file="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0129.jpg?fit=530%2C2000" data-large-file="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0129.jpg?fit=1000%2C3000" src="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0129.jpg?resize=125%2C125" class="attachment-thumbnail" alt="IMG_0129" /></a>
<a href='http://tgrayimages.com/putting-up-the-christmas-tree/img_0130/' title='IMG_0130'><img data-attachment-id="949" data-orig-file="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0130.jpg?resize=2272%2C1704" data-orig-size="2272,1704" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.6&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon PowerShot A520&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1260391600&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;5.8125&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0.0166666666667&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_0130" data-image-description="" data-medium-file="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0130.jpg?fit=530%2C2000" data-large-file="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0130.jpg?fit=1000%2C3000" src="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0130.jpg?resize=125%2C125" class="attachment-thumbnail" alt="IMG_0130" /></a>
<a href='http://tgrayimages.com/putting-up-the-christmas-tree/img_0134/' title='IMG_0134'><img data-attachment-id="950" data-orig-file="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0134.jpg?resize=2272%2C1704" data-orig-size="2272,1704" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.6&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon PowerShot A520&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1260391870&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;5.8125&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0.125&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_0134" data-image-description="" data-medium-file="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0134.jpg?fit=530%2C2000" data-large-file="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0134.jpg?fit=1000%2C3000" src="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0134.jpg?resize=125%2C125" class="attachment-thumbnail" alt="IMG_0134" /></a>
<a href='http://tgrayimages.com/putting-up-the-christmas-tree/img_0135/' title='IMG_0135'><img data-attachment-id="951" data-orig-file="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0135.jpg?resize=1704%2C2272" data-orig-size="1704,2272" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.6&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon PowerShot A520&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1260391912&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;5.8125&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0.125&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_0135" data-image-description="" data-medium-file="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0135.jpg?fit=530%2C2000" data-large-file="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0135.jpg?fit=1000%2C3000" src="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0135.jpg?resize=125%2C125" class="attachment-thumbnail" alt="IMG_0135" /></a>
<a href='http://tgrayimages.com/putting-up-the-christmas-tree/img_0136/' title='IMG_0136'><img data-attachment-id="952" data-orig-file="http://i0.wp.com/tgrayimages.com/media/2009/12/IMG_0136.jpg?resize=1704%2C2272" data-orig-size="1704,2272" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.6&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon PowerShot A520&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1260391929&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;5.8125&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0.125&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_0136" data-image-description="" data-medium-file="http://i0.wp.com/tgrayimages.com/media/2009/12/IMG_0136.jpg?fit=530%2C2000" data-large-file="http://i0.wp.com/tgrayimages.com/media/2009/12/IMG_0136.jpg?fit=1000%2C3000" src="http://i0.wp.com/tgrayimages.com/media/2009/12/IMG_0136.jpg?resize=125%2C125" class="attachment-thumbnail" alt="IMG_0136" /></a>
<a href='http://tgrayimages.com/putting-up-the-christmas-tree/img_0137/' title='IMG_0137'><img data-attachment-id="953" data-orig-file="http://i0.wp.com/tgrayimages.com/media/2009/12/IMG_0137.jpg?resize=1704%2C2272" data-orig-size="1704,2272" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.6&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon PowerShot A520&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1260391948&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;5.8125&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0.125&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_0137" data-image-description="" data-medium-file="http://i0.wp.com/tgrayimages.com/media/2009/12/IMG_0137.jpg?fit=530%2C2000" data-large-file="http://i0.wp.com/tgrayimages.com/media/2009/12/IMG_0137.jpg?fit=1000%2C3000" src="http://i0.wp.com/tgrayimages.com/media/2009/12/IMG_0137.jpg?resize=125%2C125" class="attachment-thumbnail" alt="IMG_0137" /></a>
<a href='http://tgrayimages.com/putting-up-the-christmas-tree/img_0138/' title='IMG_0138'><img data-attachment-id="954" data-orig-file="http://i0.wp.com/tgrayimages.com/media/2009/12/IMG_0138.jpg?resize=2272%2C1704" data-orig-size="2272,1704" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.6&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon PowerShot A520&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1260391981&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;5.8125&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0.125&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_0138" data-image-description="" data-medium-file="http://i0.wp.com/tgrayimages.com/media/2009/12/IMG_0138.jpg?fit=530%2C2000" data-large-file="http://i0.wp.com/tgrayimages.com/media/2009/12/IMG_0138.jpg?fit=1000%2C3000" src="http://i0.wp.com/tgrayimages.com/media/2009/12/IMG_0138.jpg?resize=125%2C125" class="attachment-thumbnail" alt="IMG_0138" /></a>
<a href='http://tgrayimages.com/putting-up-the-christmas-tree/img_0139/' title='IMG_0139'><img data-attachment-id="955" data-orig-file="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0139.jpg?resize=1704%2C2272" data-orig-size="1704,2272" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.6&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon PowerShot A520&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1260392050&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;5.8125&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0.125&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_0139" data-image-description="" data-medium-file="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0139.jpg?fit=530%2C2000" data-large-file="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0139.jpg?fit=1000%2C3000" src="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0139.jpg?resize=125%2C125" class="attachment-thumbnail" alt="IMG_0139" /></a>
<a href='http://tgrayimages.com/putting-up-the-christmas-tree/img_0140/' title='IMG_0140'><img data-attachment-id="956" data-orig-file="http://i0.wp.com/tgrayimages.com/media/2009/12/IMG_0140.jpg?resize=1704%2C2272" data-orig-size="1704,2272" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.6&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon PowerShot A520&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1260392064&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;5.8125&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0.1&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_0140" data-image-description="" data-medium-file="http://i0.wp.com/tgrayimages.com/media/2009/12/IMG_0140.jpg?fit=530%2C2000" data-large-file="http://i0.wp.com/tgrayimages.com/media/2009/12/IMG_0140.jpg?fit=1000%2C3000" src="http://i0.wp.com/tgrayimages.com/media/2009/12/IMG_0140.jpg?resize=125%2C125" class="attachment-thumbnail" alt="IMG_0140" /></a>
<a href='http://tgrayimages.com/putting-up-the-christmas-tree/img_0150/' title='IMG_0150'><img data-attachment-id="957" data-orig-file="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0150.jpg?resize=1704%2C2272" data-orig-size="1704,2272" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.6&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon PowerShot A520&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1260392352&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;5.8125&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0.0166666666667&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_0150" data-image-description="" data-medium-file="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0150.jpg?fit=530%2C2000" data-large-file="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0150.jpg?fit=1000%2C3000" src="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0150.jpg?resize=125%2C125" class="attachment-thumbnail" alt="IMG_0150" /></a>
<a href='http://tgrayimages.com/putting-up-the-christmas-tree/img_0151/' title='IMG_0151'><img data-attachment-id="958" data-orig-file="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0151.jpg?resize=1704%2C2272" data-orig-size="1704,2272" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.6&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon PowerShot A520&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1260392372&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;5.8125&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;1&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_0151" data-image-description="" data-medium-file="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0151.jpg?fit=530%2C2000" data-large-file="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0151.jpg?fit=1000%2C3000" src="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0151.jpg?resize=125%2C125" class="attachment-thumbnail" alt="IMG_0151" /></a>
<a href='http://tgrayimages.com/putting-up-the-christmas-tree/img_0152/' title='IMG_0152'><img data-attachment-id="959" data-orig-file="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0152.jpg?resize=1704%2C2272" data-orig-size="1704,2272" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.6&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon PowerShot A520&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1260392493&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;5.8125&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0.125&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_0152" data-image-description="" data-medium-file="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0152.jpg?fit=530%2C2000" data-large-file="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0152.jpg?fit=1000%2C3000" src="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0152.jpg?resize=125%2C125" class="attachment-thumbnail" alt="IMG_0152" /></a>
<a href='http://tgrayimages.com/putting-up-the-christmas-tree/img_0153/' title='IMG_0153'><img data-attachment-id="960" data-orig-file="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0153.jpg?resize=2272%2C1704" data-orig-size="2272,1704" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.6&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon PowerShot A520&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1260392505&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;5.8125&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0.125&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_0153" data-image-description="" data-medium-file="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0153.jpg?fit=530%2C2000" data-large-file="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0153.jpg?fit=1000%2C3000" src="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0153.jpg?resize=125%2C125" class="attachment-thumbnail" alt="IMG_0153" /></a>
<a href='http://tgrayimages.com/putting-up-the-christmas-tree/img_0154/' title='IMG_0154'><img data-attachment-id="961" data-orig-file="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0154.jpg?resize=2272%2C1704" data-orig-size="2272,1704" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.6&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon PowerShot A520&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1260392520&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;5.8125&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0.125&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_0154" data-image-description="" data-medium-file="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0154.jpg?fit=530%2C2000" data-large-file="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0154.jpg?fit=1000%2C3000" src="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0154.jpg?resize=125%2C125" class="attachment-thumbnail" alt="IMG_0154" /></a>
<a href='http://tgrayimages.com/putting-up-the-christmas-tree/img_0155/' title='IMG_0155'><img data-attachment-id="962" data-orig-file="http://i0.wp.com/tgrayimages.com/media/2009/12/IMG_0155.jpg?resize=2272%2C1704" data-orig-size="2272,1704" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.6&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon PowerShot A520&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1260392535&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;5.8125&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0.125&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_0155" data-image-description="" data-medium-file="http://i0.wp.com/tgrayimages.com/media/2009/12/IMG_0155.jpg?fit=530%2C2000" data-large-file="http://i0.wp.com/tgrayimages.com/media/2009/12/IMG_0155.jpg?fit=1000%2C3000" src="http://i0.wp.com/tgrayimages.com/media/2009/12/IMG_0155.jpg?resize=125%2C125" class="attachment-thumbnail" alt="IMG_0155" /></a>
<a href='http://tgrayimages.com/putting-up-the-christmas-tree/img_0156/' title='IMG_0156'><img data-attachment-id="963" data-orig-file="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0156.jpg?resize=2272%2C1704" data-orig-size="2272,1704" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.6&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon PowerShot A520&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1260392562&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;5.8125&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0.125&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_0156" data-image-description="" data-medium-file="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0156.jpg?fit=530%2C2000" data-large-file="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0156.jpg?fit=1000%2C3000" src="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0156.jpg?resize=125%2C125" class="attachment-thumbnail" alt="IMG_0156" /></a>
<a href='http://tgrayimages.com/putting-up-the-christmas-tree/img_0157/' title='IMG_0157'><img data-attachment-id="964" data-orig-file="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0157.jpg?resize=2272%2C1704" data-orig-size="2272,1704" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.6&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon PowerShot A520&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1260392577&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;5.8125&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0.125&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_0157" data-image-description="" data-medium-file="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0157.jpg?fit=530%2C2000" data-large-file="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0157.jpg?fit=1000%2C3000" src="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0157.jpg?resize=125%2C125" class="attachment-thumbnail" alt="IMG_0157" /></a>
<a href='http://tgrayimages.com/putting-up-the-christmas-tree/img_0158/' title='IMG_0158'><img data-attachment-id="965" data-orig-file="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0158.jpg?resize=2272%2C1704" data-orig-size="2272,1704" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.6&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon PowerShot A520&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1260392594&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;5.8125&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0.125&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_0158" data-image-description="" data-medium-file="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0158.jpg?fit=530%2C2000" data-large-file="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0158.jpg?fit=1000%2C3000" src="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0158.jpg?resize=125%2C125" class="attachment-thumbnail" alt="IMG_0158" /></a>
<a href='http://tgrayimages.com/putting-up-the-christmas-tree/img_0159/' title='IMG_0159'><img data-attachment-id="966" data-orig-file="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0159.jpg?resize=1704%2C2272" data-orig-size="1704,2272" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.6&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon PowerShot A520&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1260392653&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;5.8125&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0.125&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_0159" data-image-description="" data-medium-file="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0159.jpg?fit=530%2C2000" data-large-file="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0159.jpg?fit=1000%2C3000" src="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0159.jpg?resize=125%2C125" class="attachment-thumbnail" alt="IMG_0159" /></a>
<a href='http://tgrayimages.com/putting-up-the-christmas-tree/img_0160/' title='IMG_0160'><img data-attachment-id="967" data-orig-file="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0160.jpg?resize=1704%2C2272" data-orig-size="1704,2272" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.6&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon PowerShot A520&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1260392666&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;5.8125&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0.125&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_0160" data-image-description="" data-medium-file="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0160.jpg?fit=530%2C2000" data-large-file="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0160.jpg?fit=1000%2C3000" src="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0160.jpg?resize=125%2C125" class="attachment-thumbnail" alt="IMG_0160" /></a>
<a href='http://tgrayimages.com/putting-up-the-christmas-tree/img_0161/' title='IMG_0161'><img data-attachment-id="968" data-orig-file="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0161.jpg?resize=1704%2C2272" data-orig-size="1704,2272" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.6&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon PowerShot A520&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1260392706&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;5.8125&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0.125&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_0161" data-image-description="" data-medium-file="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0161.jpg?fit=530%2C2000" data-large-file="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0161.jpg?fit=1000%2C3000" src="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0161.jpg?resize=125%2C125" class="attachment-thumbnail" alt="IMG_0161" /></a>
<a href='http://tgrayimages.com/putting-up-the-christmas-tree/img_0162/' title='IMG_0162'><img data-attachment-id="969" data-orig-file="http://i0.wp.com/tgrayimages.com/media/2009/12/IMG_0162.jpg?resize=1704%2C2272" data-orig-size="1704,2272" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.6&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon PowerShot A520&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1260392753&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;5.8125&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0.125&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_0162" data-image-description="" data-medium-file="http://i0.wp.com/tgrayimages.com/media/2009/12/IMG_0162.jpg?fit=530%2C2000" data-large-file="http://i0.wp.com/tgrayimages.com/media/2009/12/IMG_0162.jpg?fit=1000%2C3000" src="http://i0.wp.com/tgrayimages.com/media/2009/12/IMG_0162.jpg?resize=125%2C125" class="attachment-thumbnail" alt="IMG_0162" /></a>
<a href='http://tgrayimages.com/putting-up-the-christmas-tree/img_0163/' title='IMG_0163'><img data-attachment-id="970" data-orig-file="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0163.jpg?resize=2272%2C1704" data-orig-size="2272,1704" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.6&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon PowerShot A520&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1260392769&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;5.8125&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0.0166666666667&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_0163" data-image-description="" data-medium-file="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0163.jpg?fit=530%2C2000" data-large-file="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0163.jpg?fit=1000%2C3000" src="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0163.jpg?resize=125%2C125" class="attachment-thumbnail" alt="IMG_0163" /></a>
<a href='http://tgrayimages.com/putting-up-the-christmas-tree/img_0164/' title='IMG_0164'><img data-attachment-id="971" data-orig-file="http://i0.wp.com/tgrayimages.com/media/2009/12/IMG_0164.jpg?resize=1704%2C2272" data-orig-size="1704,2272" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;3.2&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon PowerShot A520&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1260392783&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;7.8125&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0.0166666666667&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_0164" data-image-description="" data-medium-file="http://i0.wp.com/tgrayimages.com/media/2009/12/IMG_0164.jpg?fit=530%2C2000" data-large-file="http://i0.wp.com/tgrayimages.com/media/2009/12/IMG_0164.jpg?fit=1000%2C3000" src="http://i0.wp.com/tgrayimages.com/media/2009/12/IMG_0164.jpg?resize=125%2C125" class="attachment-thumbnail" alt="IMG_0164" /></a>
<a href='http://tgrayimages.com/putting-up-the-christmas-tree/img_0165/' title='IMG_0165'><img data-attachment-id="972" data-orig-file="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0165.jpg?resize=1704%2C2272" data-orig-size="1704,2272" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;3.2&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon PowerShot A520&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1260392795&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;7.8125&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0.0166666666667&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_0165" data-image-description="" data-medium-file="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0165.jpg?fit=530%2C2000" data-large-file="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0165.jpg?fit=1000%2C3000" src="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0165.jpg?resize=125%2C125" class="attachment-thumbnail" alt="IMG_0165" /></a>

]]></content:encoded>
			<wfw:commentRss>http://tgrayimages.com/putting-up-the-christmas-tree/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A Christmas Choir Concert</title>
		<link>http://tgrayimages.com/a-christmas-choir-concert/</link>
		<comments>http://tgrayimages.com/a-christmas-choir-concert/#comments</comments>
		<pubDate>Tue, 08 Dec 2009 01:00:17 +0000</pubDate>
		<dc:creator>Tony</dc:creator>
				<category><![CDATA[Photos]]></category>

		<guid isPermaLink="false">http://www.tgrayimages.com/?p=801</guid>
		<description><![CDATA[The Middle School Choir Christmas Concert]]></description>
				<content:encoded><![CDATA[
<a href='http://tgrayimages.com/a-christmas-choir-concert/img_0101/' title='IMG_0101'><img data-attachment-id="777" data-orig-file="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0101.jpg?resize=2272%2C1704" data-orig-size="2272,1704" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.6&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon PowerShot A520&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1260224119&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;5.8125&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0.0166666666667&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_0101" data-image-description="" data-medium-file="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0101.jpg?fit=530%2C2000" data-large-file="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0101.jpg?fit=1000%2C3000" src="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0101.jpg?resize=125%2C125" class="attachment-thumbnail" alt="IMG_0101" /></a>
<a href='http://tgrayimages.com/a-christmas-choir-concert/img_0102/' title='IMG_0102'><img data-attachment-id="778" data-orig-file="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0102.jpg?resize=2272%2C1704" data-orig-size="2272,1704" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;3.2&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon PowerShot A520&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1260224133&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;9.8125&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0.0166666666667&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_0102" data-image-description="" data-medium-file="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0102.jpg?fit=530%2C2000" data-large-file="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0102.jpg?fit=1000%2C3000" src="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0102.jpg?resize=125%2C125" class="attachment-thumbnail" alt="IMG_0102" /></a>
<a href='http://tgrayimages.com/a-christmas-choir-concert/img_0103/' title='IMG_0103'><img data-attachment-id="779" data-orig-file="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0103.jpg?resize=2272%2C1704" data-orig-size="2272,1704" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;4.5&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon PowerShot A520&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1260224146&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;16&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0.0166666666667&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_0103" data-image-description="" data-medium-file="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0103.jpg?fit=530%2C2000" data-large-file="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0103.jpg?fit=1000%2C3000" src="http://i1.wp.com/tgrayimages.com/media/2009/12/IMG_0103.jpg?resize=125%2C125" class="attachment-thumbnail" alt="IMG_0103" /></a>
<a href='http://tgrayimages.com/a-christmas-choir-concert/img_0104/' title='IMG_0104'><img data-attachment-id="780" data-orig-file="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0104.jpg?resize=2272%2C1704" data-orig-size="2272,1704" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;5.5&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon PowerShot A520&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1260224160&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;23.1875&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0.0166666666667&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_0104" data-image-description="" data-medium-file="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0104.jpg?fit=530%2C2000" data-large-file="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0104.jpg?fit=1000%2C3000" src="http://i2.wp.com/tgrayimages.com/media/2009/12/IMG_0104.jpg?resize=125%2C125" class="attachment-thumbnail" alt="IMG_0104" /></a>
<a href='http://tgrayimages.com/a-christmas-choir-concert/img_0105/' title='IMG_0105'><img data-attachment-id="781" data-orig-file="http://i0.wp.com/tgrayimages.com/media/2009/12/IMG_0105.jpg?resize=2272%2C1704" data-orig-size="2272,1704" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;4.5&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon PowerShot A520&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1260224180&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;16&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0.0166666666667&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_0105" data-image-description="" data-medium-file="http://i0.wp.com/tgrayimages.com/media/2009/12/IMG_0105.jpg?fit=530%2C2000" data-large-file="http://i0.wp.com/tgrayimages.com/media/2009/12/IMG_0105.jpg?fit=1000%2C3000" src="http://i0.wp.com/tgrayimages.com/media/2009/12/IMG_0105.jpg?resize=125%2C125" class="attachment-thumbnail" alt="IMG_0105" /></a>
<a href='http://tgrayimages.com/a-christmas-choir-concert/pict0001/' title='PICT0001'><img data-attachment-id="782" data-orig-file="http://i1.wp.com/tgrayimages.com/media/2009/12/PICT0001.jpg?resize=2592%2C1944" data-orig-size="2592,1944" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;3.2&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;NS-DCC5HB09&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1260212441&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;100&quot;,&quot;shutter_speed&quot;:&quot;0.25&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="PICT0001" data-image-description="" data-medium-file="http://i1.wp.com/tgrayimages.com/media/2009/12/PICT0001.jpg?fit=530%2C2000" data-large-file="http://i1.wp.com/tgrayimages.com/media/2009/12/PICT0001.jpg?fit=1000%2C3000" src="http://i1.wp.com/tgrayimages.com/media/2009/12/PICT0001.jpg?resize=125%2C125" class="attachment-thumbnail" alt="PICT0001" /></a>
<a href='http://tgrayimages.com/a-christmas-choir-concert/pict0002/' title='PICT0002'><img data-attachment-id="783" data-orig-file="http://i0.wp.com/tgrayimages.com/media/2009/12/PICT0002.jpg?resize=2592%2C1944" data-orig-size="2592,1944" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;3.2&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;NS-DCC5HB09&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1260215900&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;100&quot;,&quot;shutter_speed&quot;:&quot;0.25&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="PICT0002" data-image-description="" data-medium-file="http://i0.wp.com/tgrayimages.com/media/2009/12/PICT0002.jpg?fit=530%2C2000" data-large-file="http://i0.wp.com/tgrayimages.com/media/2009/12/PICT0002.jpg?fit=1000%2C3000" src="http://i0.wp.com/tgrayimages.com/media/2009/12/PICT0002.jpg?resize=125%2C125" class="attachment-thumbnail" alt="PICT0002" /></a>
<a href='http://tgrayimages.com/a-christmas-choir-concert/pict0003/' title='PICT0003'><img data-attachment-id="784" data-orig-file="http://i2.wp.com/tgrayimages.com/media/2009/12/PICT0003.jpg?resize=2592%2C1944" data-orig-size="2592,1944" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;3.2&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;NS-DCC5HB09&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1260216031&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;100&quot;,&quot;shutter_speed&quot;:&quot;0.25&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="PICT0003" data-image-description="" data-medium-file="http://i2.wp.com/tgrayimages.com/media/2009/12/PICT0003.jpg?fit=530%2C2000" data-large-file="http://i2.wp.com/tgrayimages.com/media/2009/12/PICT0003.jpg?fit=1000%2C3000" src="http://i2.wp.com/tgrayimages.com/media/2009/12/PICT0003.jpg?resize=125%2C125" class="attachment-thumbnail" alt="PICT0003" /></a>
<a href='http://tgrayimages.com/a-christmas-choir-concert/pict0004/' title='PICT0004'><img data-attachment-id="785" data-orig-file="http://i1.wp.com/tgrayimages.com/media/2009/12/PICT0004.jpg?resize=2592%2C1944" data-orig-size="2592,1944" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;3.2&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;NS-DCC5HB09&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1260216241&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;100&quot;,&quot;shutter_speed&quot;:&quot;0.125&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="PICT0004" data-image-description="" data-medium-file="http://i1.wp.com/tgrayimages.com/media/2009/12/PICT0004.jpg?fit=530%2C2000" data-large-file="http://i1.wp.com/tgrayimages.com/media/2009/12/PICT0004.jpg?fit=1000%2C3000" src="http://i1.wp.com/tgrayimages.com/media/2009/12/PICT0004.jpg?resize=125%2C125" class="attachment-thumbnail" alt="PICT0004" /></a>
<a href='http://tgrayimages.com/a-christmas-choir-concert/pict0005/' title='PICT0005'><img data-attachment-id="786" data-orig-file="http://i2.wp.com/tgrayimages.com/media/2009/12/PICT0005.jpg?resize=2592%2C1944" data-orig-size="2592,1944" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;3.2&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;NS-DCC5HB09&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1260216247&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;100&quot;,&quot;shutter_speed&quot;:&quot;0.125&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="PICT0005" data-image-description="" data-medium-file="http://i2.wp.com/tgrayimages.com/media/2009/12/PICT0005.jpg?fit=530%2C2000" data-large-file="http://i2.wp.com/tgrayimages.com/media/2009/12/PICT0005.jpg?fit=1000%2C3000" src="http://i2.wp.com/tgrayimages.com/media/2009/12/PICT0005.jpg?resize=125%2C125" class="attachment-thumbnail" alt="PICT0005" /></a>
<a href='http://tgrayimages.com/a-christmas-choir-concert/pict0006/' title='PICT0006'><img data-attachment-id="787" data-orig-file="http://i2.wp.com/tgrayimages.com/media/2009/12/PICT0006.jpg?resize=2592%2C1944" data-orig-size="2592,1944" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;3.2&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;NS-DCC5HB09&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1260216250&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;100&quot;,&quot;shutter_speed&quot;:&quot;0.125&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="PICT0006" data-image-description="" data-medium-file="http://i2.wp.com/tgrayimages.com/media/2009/12/PICT0006.jpg?fit=530%2C2000" data-large-file="http://i2.wp.com/tgrayimages.com/media/2009/12/PICT0006.jpg?fit=1000%2C3000" src="http://i2.wp.com/tgrayimages.com/media/2009/12/PICT0006.jpg?resize=125%2C125" class="attachment-thumbnail" alt="PICT0006" /></a>
<a href='http://tgrayimages.com/a-christmas-choir-concert/pict0007/' title='PICT0007'><img data-attachment-id="788" data-orig-file="http://i0.wp.com/tgrayimages.com/media/2009/12/PICT0007.jpg?resize=2592%2C1944" data-orig-size="2592,1944" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;3.2&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;NS-DCC5HB09&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1260216256&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;100&quot;,&quot;shutter_speed&quot;:&quot;0.125&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="PICT0007" data-image-description="" data-medium-file="http://i0.wp.com/tgrayimages.com/media/2009/12/PICT0007.jpg?fit=530%2C2000" data-large-file="http://i0.wp.com/tgrayimages.com/media/2009/12/PICT0007.jpg?fit=1000%2C3000" src="http://i0.wp.com/tgrayimages.com/media/2009/12/PICT0007.jpg?resize=125%2C125" class="attachment-thumbnail" alt="PICT0007" /></a>
<a href='http://tgrayimages.com/a-christmas-choir-concert/pict0008/' title='PICT0008'><img data-attachment-id="789" data-orig-file="http://i2.wp.com/tgrayimages.com/media/2009/12/PICT0008.jpg?resize=2592%2C1944" data-orig-size="2592,1944" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;3.2&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;NS-DCC5HB09&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1260216342&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;100&quot;,&quot;shutter_speed&quot;:&quot;1&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="PICT0008" data-image-description="" data-medium-file="http://i2.wp.com/tgrayimages.com/media/2009/12/PICT0008.jpg?fit=530%2C2000" data-large-file="http://i2.wp.com/tgrayimages.com/media/2009/12/PICT0008.jpg?fit=1000%2C3000" src="http://i2.wp.com/tgrayimages.com/media/2009/12/PICT0008.jpg?resize=125%2C125" class="attachment-thumbnail" alt="PICT0008" /></a>
<a href='http://tgrayimages.com/a-christmas-choir-concert/pict0009/' title='PICT0009'><img data-attachment-id="790" data-orig-file="http://i2.wp.com/tgrayimages.com/media/2009/12/PICT0009.jpg?resize=2592%2C1944" data-orig-size="2592,1944" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;3.2&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;NS-DCC5HB09&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1260217182&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;100&quot;,&quot;shutter_speed&quot;:&quot;0.25&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="PICT0009" data-image-description="" data-medium-file="http://i2.wp.com/tgrayimages.com/media/2009/12/PICT0009.jpg?fit=530%2C2000" data-large-file="http://i2.wp.com/tgrayimages.com/media/2009/12/PICT0009.jpg?fit=1000%2C3000" src="http://i2.wp.com/tgrayimages.com/media/2009/12/PICT0009.jpg?resize=125%2C125" class="attachment-thumbnail" alt="PICT0009" /></a>
<a href='http://tgrayimages.com/a-christmas-choir-concert/pict0010/' title='PICT0010'><img data-attachment-id="791" data-orig-file="http://i0.wp.com/tgrayimages.com/media/2009/12/PICT0010.jpg?resize=3744%2C2808" data-orig-size="3744,2808" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;3.2&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;NS-DCC5HB09&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1260214839&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;100&quot;,&quot;shutter_speed&quot;:&quot;0.5&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="PICT0010" data-image-description="" data-medium-file="http://i0.wp.com/tgrayimages.com/media/2009/12/PICT0010.jpg?fit=530%2C2000" data-large-file="http://i0.wp.com/tgrayimages.com/media/2009/12/PICT0010.jpg?fit=1000%2C3000" src="http://i0.wp.com/tgrayimages.com/media/2009/12/PICT0010.jpg?resize=125%2C125" class="attachment-thumbnail" alt="PICT0010" /></a>
<a href='http://tgrayimages.com/a-christmas-choir-concert/pict0011/' title='PICT0011'><img data-attachment-id="792" data-orig-file="http://i2.wp.com/tgrayimages.com/media/2009/12/PICT0011.jpg?resize=3744%2C2808" data-orig-size="3744,2808" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;3.2&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;NS-DCC5HB09&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1260214852&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;100&quot;,&quot;shutter_speed&quot;:&quot;0.125&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="PICT0011" data-image-description="" data-medium-file="http://i2.wp.com/tgrayimages.com/media/2009/12/PICT0011.jpg?fit=530%2C2000" data-large-file="http://i2.wp.com/tgrayimages.com/media/2009/12/PICT0011.jpg?fit=1000%2C3000" src="http://i2.wp.com/tgrayimages.com/media/2009/12/PICT0011.jpg?resize=125%2C125" class="attachment-thumbnail" alt="PICT0011" /></a>
<a href='http://tgrayimages.com/a-christmas-choir-concert/pict0012/' title='PICT0012'><img data-attachment-id="793" data-orig-file="http://i2.wp.com/tgrayimages.com/media/2009/12/PICT0012.jpg?resize=3744%2C2808" data-orig-size="3744,2808" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;3.2&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;NS-DCC5HB09&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1260215003&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;100&quot;,&quot;shutter_speed&quot;:&quot;0.5&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="PICT0012" data-image-description="" data-medium-file="http://i2.wp.com/tgrayimages.com/media/2009/12/PICT0012.jpg?fit=530%2C2000" data-large-file="http://i2.wp.com/tgrayimages.com/media/2009/12/PICT0012.jpg?fit=1000%2C3000" src="http://i2.wp.com/tgrayimages.com/media/2009/12/PICT0012.jpg?resize=125%2C125" class="attachment-thumbnail" alt="PICT0012" /></a>
<a href='http://tgrayimages.com/a-christmas-choir-concert/pict0013/' title='PICT0013'><img data-attachment-id="794" data-orig-file="http://i1.wp.com/tgrayimages.com/media/2009/12/PICT0013.jpg?resize=3744%2C2808" data-orig-size="3744,2808" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;3.2&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;NS-DCC5HB09&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1260215013&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;100&quot;,&quot;shutter_speed&quot;:&quot;0.125&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="PICT0013" data-image-description="" data-medium-file="http://i1.wp.com/tgrayimages.com/media/2009/12/PICT0013.jpg?fit=530%2C2000" data-large-file="http://i1.wp.com/tgrayimages.com/media/2009/12/PICT0013.jpg?fit=1000%2C3000" src="http://i1.wp.com/tgrayimages.com/media/2009/12/PICT0013.jpg?resize=125%2C125" class="attachment-thumbnail" alt="PICT0013" /></a>
<a href='http://tgrayimages.com/a-christmas-choir-concert/pict0014/' title='PICT0014'><img data-attachment-id="795" data-orig-file="http://i2.wp.com/tgrayimages.com/media/2009/12/PICT0014.jpg?resize=3744%2C2808" data-orig-size="3744,2808" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;3.2&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;NS-DCC5HB09&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1260215429&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;100&quot;,&quot;shutter_speed&quot;:&quot;0.5&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="PICT0014" data-image-description="" data-medium-file="http://i2.wp.com/tgrayimages.com/media/2009/12/PICT0014.jpg?fit=530%2C2000" data-large-file="http://i2.wp.com/tgrayimages.com/media/2009/12/PICT0014.jpg?fit=1000%2C3000" src="http://i2.wp.com/tgrayimages.com/media/2009/12/PICT0014.jpg?resize=125%2C125" class="attachment-thumbnail" alt="PICT0014" /></a>
<a href='http://tgrayimages.com/a-christmas-choir-concert/pict0015/' title='PICT0015'><img data-attachment-id="796" data-orig-file="http://i2.wp.com/tgrayimages.com/media/2009/12/PICT0015.jpg?resize=3744%2C2808" data-orig-size="3744,2808" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;3.2&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;NS-DCC5HB09&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1260215437&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;100&quot;,&quot;shutter_speed&quot;:&quot;1&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="PICT0015" data-image-description="" data-medium-file="http://i2.wp.com/tgrayimages.com/media/2009/12/PICT0015.jpg?fit=530%2C2000" data-large-file="http://i2.wp.com/tgrayimages.com/media/2009/12/PICT0015.jpg?fit=1000%2C3000" src="http://i2.wp.com/tgrayimages.com/media/2009/12/PICT0015.jpg?resize=125%2C125" class="attachment-thumbnail" alt="PICT0015" /></a>
<a href='http://tgrayimages.com/a-christmas-choir-concert/pict0016/' title='PICT0016'><img data-attachment-id="797" data-orig-file="http://i2.wp.com/tgrayimages.com/media/2009/12/PICT0016.jpg?resize=3744%2C2808" data-orig-size="3744,2808" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;3.2&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;NS-DCC5HB09&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1260215451&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;100&quot;,&quot;shutter_speed&quot;:&quot;1&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="PICT0016" data-image-description="" data-medium-file="http://i2.wp.com/tgrayimages.com/media/2009/12/PICT0016.jpg?fit=530%2C2000" data-large-file="http://i2.wp.com/tgrayimages.com/media/2009/12/PICT0016.jpg?fit=1000%2C3000" src="http://i2.wp.com/tgrayimages.com/media/2009/12/PICT0016.jpg?resize=125%2C125" class="attachment-thumbnail" alt="PICT0016" /></a>
<a href='http://tgrayimages.com/a-christmas-choir-concert/pict0017/' title='PICT0017'><img data-attachment-id="798" data-orig-file="http://i0.wp.com/tgrayimages.com/media/2009/12/PICT0017.jpg?resize=3744%2C2808" data-orig-size="3744,2808" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;3.2&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;NS-DCC5HB09&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1260215535&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;100&quot;,&quot;shutter_speed&quot;:&quot;1&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="PICT0017" data-image-description="" data-medium-file="http://i0.wp.com/tgrayimages.com/media/2009/12/PICT0017.jpg?fit=530%2C2000" data-large-file="http://i0.wp.com/tgrayimages.com/media/2009/12/PICT0017.jpg?fit=1000%2C3000" src="http://i0.wp.com/tgrayimages.com/media/2009/12/PICT0017.jpg?resize=125%2C125" class="attachment-thumbnail" alt="PICT0017" /></a>
<a href='http://tgrayimages.com/a-christmas-choir-concert/pict0018/' title='PICT0018'><img data-attachment-id="799" data-orig-file="http://i1.wp.com/tgrayimages.com/media/2009/12/PICT0018.jpg?resize=3744%2C2808" data-orig-size="3744,2808" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;3.2&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;NS-DCC5HB09&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1260215542&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;100&quot;,&quot;shutter_speed&quot;:&quot;0.5&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="PICT0018" data-image-description="" data-medium-file="http://i1.wp.com/tgrayimages.com/media/2009/12/PICT0018.jpg?fit=530%2C2000" data-large-file="http://i1.wp.com/tgrayimages.com/media/2009/12/PICT0018.jpg?fit=1000%2C3000" src="http://i1.wp.com/tgrayimages.com/media/2009/12/PICT0018.jpg?resize=125%2C125" class="attachment-thumbnail" alt="PICT0018" /></a>
<a href='http://tgrayimages.com/a-christmas-choir-concert/pict0019/' title='Wendy'><img data-attachment-id="800" data-orig-file="http://i1.wp.com/tgrayimages.com/media/2009/12/PICT0019.jpg?resize=3744%2C2808" data-orig-size="3744,2808" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;3.2&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;NS-DCC5HB09&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1260215551&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;100&quot;,&quot;shutter_speed&quot;:&quot;1&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="Wendy" data-image-description="" data-medium-file="http://i1.wp.com/tgrayimages.com/media/2009/12/PICT0019.jpg?fit=530%2C2000" data-large-file="http://i1.wp.com/tgrayimages.com/media/2009/12/PICT0019.jpg?fit=1000%2C3000" src="http://i1.wp.com/tgrayimages.com/media/2009/12/PICT0019.jpg?resize=125%2C125" class="attachment-thumbnail" alt="Wendy" /></a>

]]></content:encoded>
			<wfw:commentRss>http://tgrayimages.com/a-christmas-choir-concert/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
