<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
    <channel>
        <title>Resolution Interactive Media Inc. </title>
		<language>en-us</language>
		<link>http://www.resolutionim.com/</link>
		<atom:link href="http://www.resolutionim.com/rss/feed.php" rel="self" type="application/rss+xml" />
		<description>An experienced Toronto and London Ontario web design, web development, mobile development, and digital marketing firm</description>
		<managingEditor>jonathan@resolutionim.com (Jonathan Kochis)</managingEditor>
		<webMaster>webmaster@resolutionim.com (Brendan Farr-Gaynor)</webMaster>
        <image>
            <url>http://www.resolutionim.com/apple-touch-icon-precomposed.png</url>
            <title>Resolution Interactive Media Inc.</title>
            <link>http://www.resolutionim.com/</link>
        </image>
        <item>
            <title><![CDATA[Five SEO tactics we use that you should too]]></title>
            <description><![CDATA[<h2>&hellip;and a few other tips we’ve picked up along the way</h2>
<p>No website is ever complete. It’s always a work in progress, with new content to be added, features to be added, and new information to be shared. </p>
<p>From an SEO perspective, there will always be more to learn and improve; there will always be new techniques and programs to use. But along the way we’ve learned a few things that we know we do well, so we wanted to share them with you so that you can use them in your projects.</p>


<h2>sitemap.xml</h2>
<p>Google describes the sitemap.xml file as follows</p>
<blockquote>
  <p>Sitemaps are a way to tell Google about pages on your site it might not otherwise discover. In its simplest terms, a XML Sitemap—usually called Sitemap, with a capital S—is a list of the pages on your website. Creating and submitting a Sitemap helps make sure that Google knows about all the pages on your site, including URLs that may not be discoverable by Google's normal crawling process. <a href="http://support.google.com/webmasters/bin/answer.py?hl=en&amp;answer=156184">http://support.google.com/webmasters/bin/answer.py?hl=en&amp;answer=156184</a></p>
</blockquote>
<p>The sitemap file is a one-size-fits-all approach adopted by all the big guys: Google, Yahoo!, and Microsoft. Instead of merely hoping that these search engines’ respective crawlers find their way to your valuable content, the sitemap.xml file takes them by the hand and leads them to the information that you want to share – and, more importantly, that your visitors are looking for.</p>
<p>While we generate our sitemap.xml file dynamically, there are a few tools that will help you build your own.</p>


<h2>robots.txt</h2>
<p>As important as leading the search crawlers to the content you want to share can be, equally important is keeping the crawlers at bay. Initially designed to prevent crawlers from using up valuable bandwidth, robots.txt is now best used to discourage Web crawlers from finding, indexing, and displaying sensitive information to the world.</p>
<p>A robots.txt file tells crawlers which files are okay to crawl and which ones are off limits. It’s important to make sure that the content you want shown on search engine results isn’t blocked by anything in the robots.txt file.</p>
<p>Our robots.txt file is wide open and even links to our sitemap.xml file</p>

<pre><code>User-agent: *
Disallow: /harming/humans
Disallow: /disobeying/human/orders
Disallow: /hatching/world/domination
Disallow: /harm/to/self
Sitemap: http://www.resolutionim.com/sitemap.xml
</code></pre>


<h2>Google/Bing Webmaster Tools setup</h2>
<p>These webmaster tools are invaluable in helping you diagnose crawl errors and bottlenecks in your SEO. The process to sign up for these tools is straightforward and verification can be as simple as uploading a file to your website.</p>
<h3>Why we use both</h3>
<p>Google and Bing’s webmaster tools both provide a great of amount of data and insight into your website. While the two handle diagnosing broken links (both internal and those from other pages) similarly, each has its own unique tools to help analyze other issues.</p>
<p>For example, Bing has tools that can tell you if you’re missing ALT tags on your images, whereas Google does a great job of alerting you when it notices drastic changes in its indexing.</p>
<p>I highly suggest you look into using both in your next project.</p>


<h2>Redirecting old urls</h2>
<p>One of the big changes in our fourth ResolutionIM.com release (which went by the codename Project Woodclock) involved changing the structure of our URLs to make them more user friendly. As our site had been operational for quite some time many inbound links pointed to now-non-existent URLs.</p>
<p>By using Google’s webmaster Tools, we were able to export a list of all those URLs causing 404 (file not found) errors. We then took this list and created permanent redirects to the proper content.</p>
<p>Here is a snippet from our .htaccess file with a few of these redirects:</p>

<pre><code>RewriteCond %{QUERY_STRING} ^(.*)ifid=144(.*)$
RewriteRule ^content/blog(.*)$ /feed/samsonite-canada-behind-the-digital-curtain [L,R=301]
RewriteRule ^content/blog$ /feed [R=301,L]
</code></pre>


<h2>Microdata</h2>
<p>This is probably my favourite addition to our website. Microdata is an incredibly powerful tool designed to give added meaning and context to your content.</p>

<h3>What does this mean to you?</h3>
<p>It means a better user experience for your users and customers. With Microdata, search engines have the power to better understand the content you’re displaying – and this greater understanding allows for a greater ability to present your content properly.</p>
<p>Think of a product that you’re displaying on your website. If properly marked with Microdata, search engines will now understand that it’s a product. They’ll be able to see its price, image, and description. And these sites will then be able to display it appropriately on their respective results pages. They may even include it in other searches people are doing.</p>
<p>We use Microdata on all our blog posts to give detail about the author. We also use it on our homepage to show our two locations and provide details about our employees.</p>
<p>If you’d like to learn more about Microdata -- and I really think you should -- check out <a href="http://schema.org/">http://schema.org/</a></p>


<h2>And some other things...</h2>

<h3>Optimizing images</h3>
<p>This one should be high on everyone’s to-do list as optimizing images not only can save hundreds of KB -- it can also save your users a tonne of frustration.</p>
<p>Optimized images translate to faster load times and happier customers. We’ve discussed this topic in the past, so I invite you to read some of our other speed optimization tips in our post titled, “<a href="http://www.resolutionim.com/speed">Improving Speed on Your Website</a>”.</p>
<p>When we launched the latest version of our website (project Iron Candy), we made sure to optimize all images that we had added to our blog posts – saving close to five MB.</p>

<h3>humans.txt</h3>
<p>Everyone loves a little recognition for their work, but publishing a list of the people who helped put your site together just isn’t feasible. Now, there’s a new initiative, the humans.txt file, which offers the best of both worlds.</p>
<p>The humans.txt file lets you give credit to the developers behind the site, but do so in an unobtrusive manner. Think of it as a behind-the-scenes credit role. Learn more about this initiative here <a href="http://humanstxt.org/">http://humanstxt.org/</a> or view our own star-studded cast <a href="http://www.resolutionim.com/humans.txt">http://www.resolutionim.com/humans.txt</a></p>
<p><small>tldr; USE <a href="http://schema.org/">MICROFORMATS</a></small></p>]]></description>
            <pubDate>Wed, 17 Apr 2013 14:00:00 -0400</pubDate>
            <link>http://res.im/seo</link>
            <guid isPermaLink="true">http://res.im/seo</guid>
        </item>        <item>
            <title><![CDATA[ResIM r+d]]></title>
            <description><![CDATA[<div class="wiki_entry"> 
 <p> </p> 
 <p class="p1">Resolution Research + Development (r+d) is a elective program to help staff explore new areas of expertise in the form of company paid time to learn and do special (non-client) projects. Projects follow the traditional client project model, where a project or skill will be 'pitched' to partners and then if approved treated as a regular project with a specific work team or individual completing the project.</p> 
 <p class="p2"><br class="" /></p> 
 <p class="p1"><b>For each project/skill/certification, Resolution will make available some possible resources for you to grab from such as:</b></p> 
 <p class="p1"> </p> 
 <ul>
   
  <li>5 points of protected time per week (roughly a $6000 value)</li>
   
  <li>Funding for a Fanshawe night class (<a href="http://res.im/fanshawe"><span class="s1">http://res.im/fanshawe</span></a>) or local workshop up to $800</li>
   
  <li>Up to $400 for books to add to our internal library for your project</li>
   
  <li>Up to $1000 in equipment for our internal use </li>
   
 </ul> 
 <p></p> 
 <p class="p2"><br class="" /></p> 
 <h2><b>How It Works:</b></h2> 
 <p class="p2">You must prepare a Google doc proposal for the partners (just a page) noting what you would like to do (eg. take a class, make an app, build an electronics project, etc). </p> 
 <p class="p2">Structure it as: </p> 
 <p class="p2"> </p> 
 <ul>
   
  <li>The Project</li>
   
  <li>The Schedule</li>
   
  <li>The Deliverable</li>
   
  <li>The Cost</li>
   
 </ul> 
 <p></p> 
 <p class="p2">Your proposal should identify what your goal will be, how you expect the project to work at a high level and it should have a deliverable or some kind of outcome with timing outlining what you will do each week in point form. If your project will need funding you must identify how much you think it will cost and where you will get your items or in the case of a class who to pay etc. Your project/venture should be a manageable chunk of work within a time slot of 6 to 8 weeks so if it's larger, break it up into releasable phases.</p> 
 <p class="p1">Partners will review proposals and grant you a slot and funding if approved.</p> 
 <p class="p2"><br class="" /></p> 
 <h2><b>Criteria &amp; Constraints:</b></h2> 
 <p class="p2"><br class="" /></p> 
 <p class="p1">- Your project/skill should have a clearly defined outcome (eg. class certificate, model, app, component, prototype)</p> 
 <p class="p1">- Your project should be able to reach it's goal within a 6 to 8 week timespan at 5 points per week (if your project is larger break it up into releasable phases, classes are also a possible exception)</p> 
 <p class="p1">- Projects are encouraged to be individual. But if you want to do something with other people, make sure things are defined more thoroughly in your pitch. Group projects will be much harder to complete if goals get too lofty.</p> 
 <p class="p1">- All projects (with the exception of certifications obviously) will be the property of ResIM. That means any web projects must be hosted on our equipment and use our communication channels if applicable. There are exceptions to this and we're open to discussion prior to project start.</p> 
 <p class="p1">- Freelancing or doing projects for hire are not a good match here.</p> 
 <p class="p2"><br class="" /></p> 
 <h2><b>Review:</b></h2> 
 <p class="p1">The time and funding will be granted to individuals who have good regular point performance and have been at ResIM for a period of at least 1 year. Your slot will be granted in coordination with your schedule and the schedule of others. Parallel project conflicts will be decided by lottery. If you meet your first outcome, you will easily be granted another project. </p></div>]]></description>
            <pubDate>Fri, 12 Oct 2012 00:00:00 -0400</pubDate>
            <link>http://res.im/rplusd</link>
            <guid isPermaLink="true">http://res.im/rplusd</guid>
        </item>        <item>
            <title><![CDATA[Jobs - Administrative Assistant]]></title>
            <description><![CDATA[<p>As the result of continued growth we&rsquo;re looking for an Administrative Assistant at our London, ON office.
<p><strong>This Position In a Nutshell</strong></p>
<p>This key support position includes supporting operations, accounts, and production departments with a range of administrative activities.</p>
<p><strong>About Us</strong></p>
<p>Resolution Interactive Media Inc. (ResIM) is a nationally acclaimed digital agency with offices in Toronto and London, Ontario. Our core competency is delivering exceptional and challenging web projects. We bring big brands and complex business processes to the digital channel with rich experiences, and we love it. If you have administrative experience and a passion for the web we want to hear from you!</p>
<p><strong>About You</strong></p>
<p>You are a people person who is organized, efficient, and obsessive over details and keeping things simple. In addition, you are passionate about new technologies and a participator in all things online.</p>
<p><strong>What You'll Be Doing</strong></p>
<ul>
<li>Performing basic accounting duties including the preparation of monthly expense reports and liaising with external bookkeeping and accounting resources.</li>
<li>Managing and directing incoming and outgoing electronic and telephone communication.</li>
<li>Proofreading and document preparation.</li>
<li>Supporting production through quality assurance testing and content integration.</li>
<li>Coordinating office services such as couriers, ordering supplies, and working with property managers at our London and Toronto locations.</li>
<li>Developing mock-ups, wireframes and other planning documents.</li>
<li>Providing assistance to non-production managers with technical requirement clarification and end-user documentation.</li>
<li>Reviewing project requests and preparing proposals.</li>
<li>Organizing and facilitating general office up-keep.</li>
</ul>
<p><strong>What We're Looking For</strong></p>
<ul>
<li>Exceptional visual conceptual skills.</li>
<li>Wonderful verbal and written communication skills.</li>
<li>Excellent organizational skills.</li>
<li>Strong eye for detail.</li>
<li>Teamwork skills.</li>
<li>Bilingualism is an asset.</li>
<li>Exceptional problem determination and creative problem solving skills.</li>
</ul>

<p><strong>Required Education/Experience</strong></p>
<ul>
<li>Minimum 2+ Year College Diploma.</li>
<li>2+ years of either agency or other demonstrated field experience.</li>
</ul>
<p><strong>Terms</strong></p>
<p>Full Time Position. &nbsp;Resolution staffers enjoy a competitive annual salary in a relaxing, open, <strong><a href="http://www.flickr.com/photos/resolutionim/sets/72157627250142842/" target="_blank">collaborative environment</a></strong>.</p>
<p>Other perks include:</p>
<ul>

<li>A mantra of respect towards employee evenings and weekends.</li>
<li>Daily flex time, start when you want.</li>
<li>Company paid conferences and personal development.</li>
<li>Company paid medical and dental benefits.</li>
</ul>
<p>Please send your resume in confidence to <a href="mailto:hr@resolutionim.com">hr@resolutionim.com</a> with the subject line 'I &lt;3 Admin!'. &nbsp;Only those candidates we would like to interview will be contacted. &nbsp;ResIM is an equal opportunity employer.</p>]]></description>
            <pubDate>Fri, 06 Jul 2012 00:00:00 -0400</pubDate>
            <link>http://res.im/adminjob</link>
            <guid isPermaLink="true">http://res.im/adminjob</guid>
        </item>        <item>
            <title><![CDATA[Jobs - Interactive UI/UX Designer]]></title>
            <description><![CDATA[<p>As the result of continued growth we&rsquo;re looking for our next interactive UI/UX designer.
<p><strong>This Position In a Nutshell</strong></p>
<p>Interface design and graphics work in collaboration with other designers in our web and screen media focused production team. Development of polished concepts with ability to slice them into working web layouts and UI components.</p>
<p><strong>About Us</strong></p>
<p>Resolution Interactive Media Inc. (ResIM) is London&rsquo;s nationally acclaimed digital agency. As a leading Canadian player, our core competency is delivering exceptional and challenging web projects. We bring big brands and complex business processes to the digital channel with rich experiences, and we love it. If you have a background in and a passion for web design we want to hear from you.</p>
<p><strong>About You</strong></p>
<p>You consider yourself a bit of a design nut. You've been designing digital projects for a while and are passionate about new technologies. Your friends avoid using Comic Sans thanks to your rants and know your opinion on every piece of ad work out there whether they asked for it or not.&nbsp;</p>
<p><strong>What You'll Be Doing</strong></p>
<ul>
<li>Designing site layouts and graphic components.</li>
<li>Slicing layouts and building module UIs.</li>
<li>Working with javascript components.</li>
<li>Contributing to our mobile interfaces and developing concepts.</li>
<li>Developing mock-ups, wireframes and other planning documents.</li>
<li>Providing assistance to non-production managers with technical requirement clarification and end-user documentation.</li>
<li>Attending production meetings and working with other production team members to solve problems and create work plans.</li>
<li>Contributing to the larger enhancements for existing projects.</li>
</ul>
<p><strong>What We're Looking For</strong></p>
<ul>
<li>Exceptional visual conceptual skills with demonstrated ability to design for digital/web.</li>
<li>Wonderful verbal and written communication skills.</li>
<li>Excellent organizational skills.</li>
<li>Strong eye for detail.</li>
<li>Teamwork skills.</li>
<li>An enthusiasm for usability (ease-of-use).</li>
<li>Exceptional problem determination and creative problem solving skills.</li>
<li>Ability to hand code web projects and create/maintain reusable code.</li>
</ul>
<p><strong>Technologies/Languages You Need To Know</strong></p>
<ul>
<li>HTML</li>
<li>CSS</li>
<li>Javascript</li>
</ul>
<p><strong>Technologies/Languages That Will Make Us Raise An Eyebrow</strong></p>
<ul>
<li>SVN/Git Experience</li>
<li>UNIX Environment Experience</li>
<li>Objective C / C#</li>
<li>Actionscript</li>
</ul>
<p><strong>Required Education/Experience</strong></p>
<ul>
<li>Minimum 2+ Year College Diploma in a new media or design field (Web Development, Multimedia or similar).</li>
<li>2+ years of either agency or other demonstrated field experience.</li>
</ul>
<p><strong>Terms</strong></p>
<p>Full Time Position. &nbsp;Resolution staffers enjoy a competitive annual salary in a relaxing, open, <strong><a href="http://www.flickr.com/photos/resolutionim/sets/72157627250142842/" target="_blank">collaborative environment</a></strong>.</p>
<p>Other perks include:</p>
<ul>
<li>XP-style agile development workflow.</li>
<li>A mantra of respect towards employee evenings and weekends.</li>
<li>Project ownership and democratic decision making across all staffers junior/senior.</li>
<li>Daily flex time, start when you want.</li>
<li>Company paid conferences and personal development.</li>
<li>Company paid medical and dental benefits.</li>
</ul>
<p><strong>What To Submit</strong></p>
<p>Your resume and a couple of samples that you feel show off a little of what you can do. You *must* provide an example of your *best* work to be considered for an interview.&nbsp;</p>
<p>Submission examples:</p>
<ul>
<li>Screen shot galleries of your web related work.</li>
<li>URL's to websites/projects that you've developed.</li>
</ul>
<p>Please send your resume and portfolio URL in confidence to <a href="mailto:hr@resolutionim.com">hr@resolutionim.com</a>. &nbsp;Only those candidates we would like to interview will be contacted. &nbsp;ResIM is an equal opportunity employer.</p>]]></description>
            <pubDate>Fri, 06 Jul 2012 00:00:00 -0400</pubDate>
            <link>http://res.im/ui-design</link>
            <guid isPermaLink="true">http://res.im/ui-design</guid>
        </item>        <item>
            <title><![CDATA[Jobs - Digital Account Planner]]></title>
            <description><![CDATA[<p>As the result of continued growth we&rsquo;re looking for an Digital Account Planner at either our Toronto or London, Ontario locations.
<p><strong>This Position In a Nutshell</strong></p>
<p>The Digital Account Planner combines market data, research, and channel knowledge to enable the ResIM team to execute projects and campaigns built around solving a defined business challenge.</p>
<p><strong>About Us</strong></p>
<p>Resolution Interactive Media Inc. (ResIM) is a nationally acclaimed digital agency with offices in Toronto and London, Ontario. Our core competency is delivering exceptional and challenging web projects. We bring big brands and complex business processes to the digital channel with rich experiences, and we love it. If you have digital experience and a passion for the web we want to hear from you!</p>
<p><strong>About You</strong></p>
<p>You are a people person who is organized, efficient, and obsessive over details and keeping things simple. You have above-average knowledge of planning and executing projects and campaigns in the digital channel and bring the expertise necessary to provide an increased level of value to our clients.</p>
<p><strong>What You'll Be Doing</strong></p>
<ul>
<li>Working with new and existing clients to identify specific business problems and develop ideas.</li>
<li>Communicating with ResIM colleagues in the process of developing a campaign or project.</li>
<li>Analyzing a wide range of information in great detail, including demographics, platforms and technologies and the market for the client's product or service.</li>

<li>Running audience research sessions.</li>
<li>Managing online advertising campaigns.</li>
<li>Providing regularly scheduled performance reports to clients and ResIM partners.</li>
<li>Acting as the digital marketing thought-leader within ResIM.</li>

</ul>
<p><strong>What We're Looking For</strong></p>
<ul>
<li>Excellent organizational skills.</li>
<li>Teamwork skills.</li>
<li>Audience research and data analysis experience.</li>
<li>Above-average writing skills.</li>
</ul>

<p><strong>Required Education/Experience</strong></p>
<ul>
<li>Minimum 2+ Year College Diploma.</li>
<li>3+ years of either agency or other demonstrated field experience.</li>
<li>Google AdWords certification (or similar) is preferred.</li>
<li>Proficiency with statistics packages such as Google Analytics.</li>
</ul>
<p><strong>Terms</strong></p>
<p>Full Time Position. &nbsp;Resolution staffers enjoy a competitive annual salary in a relaxing, open, <strong><a href="http://www.flickr.com/photos/resolutionim/sets/72157627250142842/" target="_blank">collaborative environment</a></strong>.</p>
<p>Other perks include:</p>
<ul>

<li>A mantra of respect towards employee evenings and weekends.</li>
<li>Daily flex time, start when you want.</li>
<li>Company paid conferences and personal development.</li>
<li>Company paid medical and dental benefits.</li>
</ul>
<p>Please send your resume in confidence to <a href="mailto:hr@resolutionim.com">hr@resolutionim.com</a> with the subject line 'Digital Account Planner'. In order to be considered candidates must demonstrate the planning and execution of a successful digital campaign.</p><p>Only those candidates we would like to interview will be contacted. &nbsp;ResIM is an equal opportunity employer.</p>]]></description>
            <pubDate>Fri, 06 Jul 2012 00:00:00 -0400</pubDate>
            <link>http://res.im/account-planner</link>
            <guid isPermaLink="true">http://res.im/account-planner</guid>
        </item>        <item>
            <title><![CDATA[Jobs - Web Developer - Junior/Intermediate]]></title>
            <description><![CDATA[<p>As the result of continued growth we're looking for our next web developer.</p>

<p>This position is available in either our <strong>London or Toronto</strong> studios.</p>

<p><strong>This Position In a Nutshell</strong></p>
<p>Junior/Intermediate level experience, web development with a focus in LAMP (PHP) working with other developers in our web-only production department.</p>
<p><strong>About Us</strong></p>
<p>Resolution Interactive Media Inc. (ResIM) is a nationally acclaimed digital agency. As a leading Canadian player our core competency is delivering exceptional and challenging web projects. If you have a background in and a passion for web development we want to hear from you.</p>
<p><strong>About You</strong></p>
<p>You've been building complex web projects and are passionate about new technologies.&nbsp;</p>
<p><strong>What You'll Be Doing</strong></p>
<ul>
<li><span>Writing code for data-driven web projects and rich interfaces.</span></li>
<li><span>Designing application layouts.</span></li>
<li><span>Contributing to Quipp, our in-house php framework.</span></li>
<li><span>Providing assistance to non-production managers with technical requirement clarification and end-user documentation.</span></li>
<li><span>Attending production meetings and working with other production team members to solve problems and create work plans.</span></li>
<li><span>Contributing to the larger enhancements for existing projects.</span></li>
</ul>
<p><strong>What We're Looking For</strong></p>
<ul>
<li>Strong eye for detail.</li>
<li>Teamwork skills.</li>
<li>An enthusiasm for usability (ease-of-use).</li>
<li>Exceptional problem determination and creative problem solving skills.</li>
<li>Ability to hand code web projects and create/maintain reusable code.</li>
</ul>
<p><strong>Technologies/Language Basics You Need To Know</strong></p>
<ul>
<li>HTML/XHTML</li>
<li>XML</li>
<li>CSS</li>
<li>PHP</li>
<li>SQL</li>
<li>Javascript</li>
</ul>
<p><strong>Technologies/Languages That Will Make Us Raise An Eyebrow</strong></p>
<ul>
<li>SVN/Git Experience</li>
<li>UNIX Environment Experience</li>
<li>Objective C / C#</li>
<li>Experience Developing Modules In 3rd Party Frameworks and CMSs.</li>
</ul>
<p><strong>Required Education/Experience</strong></p>
<ul>
<li>Minimum 2+ Year College Diploma in a new media field (Web Development, Analyst, Multimedia, Programming or similar).</li>
<li>2+ years of either agency or other demonstrated field experience a plus</li>
<li>Demonstrated ability to develop data-driven web projects.</li>
</ul>
<p><strong>Terms</strong></p>
<p>Full Time Position. &nbsp;Resolution staffers enjoy an annual salary in a relaxing, open, <strong><a href="http://www.flickr.com/photos/resolutionim/sets/72157627250142842/" target="_blank">collaborative environment</a></strong>.</p>
<p>Other perks include:</p>
<ul>
<li>A mantra of respect towards employee evenings and weekends.</li>
<li>Project ownership and democratic decision making across all staffers (junior/senior).</li>
<li>Daily flex time, start when you want.</li>
<li>Company paid conferences and personal development.</li>
<li>Company paid medical and dental benefits.</li>
</ul>
<p><strong>What To Submit</strong></p>
<p>Your resume and a couple of samples that you feel show off a little of what you can do. You *must* provide an example of your web work to be considered for an interview.</p>
<p>Submission examples:</p>
<ul>
<li>Code samples.</li>
<li>Screen shot galleries.</li>
<li>URL's to websites/projects that you've developed.</li>
</ul>
<p>Please send your resume and portfolio URL in confidence to <a href="mailto:hr@resolutionim.com"><span>hr@resolutionim.com</span></a>. &nbsp;Only those candidates we'd like to interview will be contacted. &nbsp;ResIM is an equal opportunity employer.</p>]]></description>
            <pubDate>Tue, 19 Jun 2012 00:00:00 -0400</pubDate>
            <link>http://res.im/codejob2012</link>
            <guid isPermaLink="true">http://res.im/codejob2012</guid>
        </item>        <item>
            <title><![CDATA[Code Break: Keyboard Stats]]></title>
            <description><![CDATA[A look at how we track the keyboard stats on the new ResolutionIM.com]]></description>
            <pubDate>Thu, 08 Mar 2012 21:31:59 -0500</pubDate>
            <link>http://res.im/keys</link>
            <guid isPermaLink="true">http://res.im/keys</guid>
        </item>        <item>
            <title><![CDATA[App in a Day]]></title>
            <description><![CDATA[Join ResIM as we build an app in a day at the 2012 Fanshawe College eMarketing Conference.]]></description>
            <pubDate>Tue, 21 Feb 2012 15:22:00 -0500</pubDate>
            <link>http://res.im/app-in-a-day</link>
            <guid isPermaLink="true">http://res.im/app-in-a-day</guid>
        </item>        <item>
            <title><![CDATA[Responsive Design Tips]]></title>
            <description><![CDATA[<p>'Responsive Design' has become extremely popular in the last six months and will continue to do so with the growing popularity of tablets and smartphones. </p>

<p>There are arguments both for and against the use of responsive design; this post will cover the way in which we choose to integrate responsive design in the websites we create at ResIM (see <a href="http://res.im" target="_blank">http://res.im</a> and <a href="http://www.centralhuron.com" target="_blank">http://www.centralhuron.com</a> for examples).</p>

<p><strong>Fixed Width</strong></p>


<p>Like many frameworks and sites, we've stuck to the 960px model because it keeps the page within a 1024px viewport, which is still one of the more popular screen resolutions. </p>

<p>When I'm slicing a site I usually set up my container width at 960px and then start laying out columns with widths based on the approved composite. </p>

<p>Once I have the rough layout of columns and structure built for the site I then move into making the site responsive. </p>

<p><strong>Making It Responsive</strong></p>


<p>Using a fixed width at 960px we start with a basic step and change the width of the container from its current <em>width: 960px;</em> to <em>max-width: 960px;</em>. </p>

<p>This is now the perfect starting point for bringing this design down to the device's width. Instead of being locked at 960px it can now get smaller than 960px without going any larger. </p>

<p>Next, I start changing all of the column widths that are pixel values in the composite to percent values. I like to use a quick and easy formula for this:</p>

<p>Take the width of the element, for example a news widget that is sitting next to an introduction text widget (in our example the width of the widget is 225px), and divide it by the max-width of your container (in our example 225/960 = 0.234375).  Convert this number to a percent (23.4%) and now use this value in your css as the width instead of the pixel value. </p>

<p><strong>(Width of Element) / (Width of container) * 100 = Percentage width</strong></p>

<p>Once the main columns are set up with percent widths you’ll need to ensure all of the elements inside of those are set up with 100% widths. Now when adjustments are made to the column container widths the elements within the columns will scale down in reaction.</p>

<p><strong>Media Queries</strong></p>


<p>Now that we have the structure set up it's time to start tweaking the design for the smaller screen sizes. </p>

<p>With how the page is currently set up, each element will scale down proportionally in response to the resizing of the browser window. The problem that will now occur is that it will look odd when the elements start getting too small. </p>

<p>This is where media queries come in. </p>

<p>Here’s what we use: </p>

<p><pre>@media only screen and (max-width: 480px) { }</pre> and then inside of the brackets you put your css that you want to change when the browser window gets smaller than 480px (in this example). </p>

<p>Next, I set-up multiple instances of this for different widths i.e. 768px for vertical iPad orientation.</p>

<p>Usually I'll have some basic ones for tablets and smartphones but I also include instances for when the browser window gets to a funny spot where something on the pages breaks and I want to change how it looks (for example the logo and nav running into each other or a column that gets just a bit too small). </p>

<p>In this case I use a handy tool called <a href="http://resizemybrowser.com/" target="_blank">http://resizemybrowser.com/</a>. The nice part about this is that it gives you the current inner size of your browser window which you can then use to resize your window on your site until something breaks and then make another media query instance.</p>

<p>Once you've set up your 'break points' it's time to start rearranging your columns and graphics. For this I'll run you through a quick and easy example. </p>

<p>Let's say you have a 2 column layout where one column, let's call it colA, is set at a width of 65% and a 2nd column named colB set at a width of 35%.</p>

<pre>#container { max-width: 960px; }

#colA { width: 65%; float: left; }
#colB { width: 35%; float: right; } </pre>
<p>Now as we start resizing our browser window down, we discover that these columns start to look funny at around 700px wide. Here's where we'll make our first media query instance:</p>

<pre>@media only screen and (max-width: 700px) { 

}</pre>

<p>Now we're going to move the smaller #colB underneath #colA. Let's do that by changing the width of these columns to 100%;</p>

<pre>@media only screen and (max-width: 700px) { 
	#colA, #colB { 
		width: 100%; 
		float: left; 
		margin: 10px 0; 
	}   
}</pre>

<p>I've added a margin to push the columns away from each other so they don't run right into each other now that they’re stacked.</p>

<p>This is a simple example and not as complex as what you’ll come across, but use this as a first step. Continue restructuring as you go down in size while setting up new media query instances for each size in which the content breaks. </p>

<p>For more information on responsive design and some actual real world code examples check out a few of these sites:</p>

<p><strong>Resource</strong></p>
<ul><li><a href="http://thinkvitamin.com/design/beginners-guide-to-responsive-web-design/" target="_blank">http://thinkvitamin.com/design/beginners-guide-to-responsive-web-design/</a></li>
<li><a href="http://www.alistapart.com/articles/responsive-web-design/" target="_blank">http://www.alistapart.com/articles/responsive-web-design/</a></li></ul>

<p><strong>Inspiration</strong></p>
<ul><li><a href="http://webdesignerwall.com/trends/inspiration-fluid-responsive-design" target="_blank">http://webdesignerwall.com/trends/inspiration-fluid-responsive-design</a></li>
<li><a href="http://mediaqueri.es/" target="_blank">http://mediaqueri.es/</a></li></ul>]]></description>
            <pubDate>Fri, 20 Jan 2012 00:00:00 -0500</pubDate>
            <link>http://res.im/responsive</link>
            <guid isPermaLink="true">http://res.im/responsive</guid>
        </item>        <item>
            <title><![CDATA[Our Approach to Blogging: 12 Month Analysis]]></title>
            <description><![CDATA[<p>It's been well over a year since we changed our approach to blogging here at ResIM.  The results have been both favourable and thought-provoking.</p>

<p><strong>It started in a basement office with six guys and a whiteboard.</strong></p>

<p>In early 2010 we decided to start planning a complete overhaul of our web site; both from a visual perspective and in how we approach content.  The plan involved creating a simple, one-page site that would stand-out among traditional web sites, allow us to frequently change the user interface, and be supported by uniquely designed blog posts every 4-6 weeks.  The blog posts allow us to create and share content while giving our design team room to try new things and think beyond standard web interface design.</p>

<p><strong>The results.</strong></p>

<p>The new site launched in June of 2010.  Here are some interesting pageview results captured during the first year:</p>

<img class="responsive" src="http://www.resolutionim.com/img/graph1.png" alt="Most Popular Blog Post Prior and After Redesign" />

<p>Our most viewed post after the redesign was <a href="http://www.resolutionim.com/speed">'Improving the Speed of Your Website'</a> by @mikealmond and @andrewprocter.  In addition to great content, this post was very well designed and featured a couple of shareable features (an animated GIF rocket and parallax scroll).  The post gained initial momentum through Twitter before being featured in several blogs and design galleries and being shared via Stumbleupon.</p>

<p>Some other interesting statistics:</p>

<img class="responsive" src="http://www.resolutionim.com/img/graph2.png" alt="Before and After Redesign" />

<p>In comparing these statistics it's obvious that even though our traffic isn’t much at all we experienced a sizeable increase to the tune of nearly 10,000 additional visits.  At first glance the next two metrics seem to point to little or no improvement.  That's not entirely true.</p>

<p><strong>Context matters.</strong></p>

<p>A marginal increase in pageviews and a decrease in the number of pages per visit makes sense because, quite simply, we have a one-page web site with a limited number of landing pages in the form of highly customized blog posts. Less pages = less pageviews and fewer pages per visit. </p>

<p><strong>Bounce rate, schmounce rate.</strong></p>

<p>In most web analytics circles the bounce rate, or percentage of visitors who only access one page prior to leaving, is a highly-regarding metric -- the lower the better.  </p>

<p>It's interesting to consider what happens to this metric when you have a one page web site.  </p>

<p>Does bounce rate matter when everything the visitor needs, including a conversion point, can be found on one page?  </p>

<p><strong>In my opinion, not really.</strong></p>

<p>The same thinking applies if you look at each page on your site as a landing page or your entire site as a collection of home pages, each with a conversion point.</p>

<p><strong>Our next move.</strong></p>

<p>From a content perspective I think we've found that our perfect formula is a mix between valuable, usable content and intriguing, unique design.  Nothing new here, but it's rewarding to put content theory to the test.</p>

<img class="responsive" src="http://www.resolutionim.com/img/graph3.png" alt="Value-Focused and Self-Promotion" />

<small>*Includes data from custom designed, feature posts only.</small>

<p>Though the interface and experience offered by our one-page web site has changed recently I think it's safe to say we'll be sticking with what works from a blogging perspective.</p>
]]></description>
            <pubDate>Fri, 23 Dec 2011 15:33:00 -0500</pubDate>
            <link>http://res.im/blogging</link>
            <guid isPermaLink="true">http://res.im/blogging</guid>
        </item>        <item>
            <title><![CDATA[Creator or Configurator]]></title>
            <description><![CDATA[Lack of innovation on the web is reducing value and commoditizing an industry that should pride itself on innovation.]]></description>
            <pubDate>Thu, 26 May 2011 21:31:59 -0400</pubDate>
            <link>http://res.im/creator</link>
            <guid isPermaLink="true">http://res.im/creator</guid>
        </item>        <item>
            <title><![CDATA[We're Finalists in the 2011 SxSW Interactive Awards!]]></title>
            <description><![CDATA[<p>The <a href="http://www.resolutionim.com/lrcp">virtual orientation project</a> we developed for the London Regional Cancer Program is a finalist in the Educational Resource category at the <a href="http://sxsw.com/interactive/awards" target="_blank">2011 SxSW Interactive Awards</a>.</p><p>Jonathan and Brendan will be at the awards ceremony in Austin on March 15th as the LRCP project competes against others from PBS, the US Census, Gibson Guitars, and Rosetta Stone.</p><p>Thanks to the folks at B2C Marketing Insider for these kind words:</p>
<p><em>With the LRCP site, ResIM shows the brilliance and innovative spirit that drive their team. Visiting the firm's website, it's easy to see that creative minds are at work (literally: the background image for the site is a softened bird's-eye-view picture of their office and in the bottom corner you can see how many hours it's been since the image refreshed). Their website offers visitors a fresh and aesthetically pleasing experience as well as blog posts about their various projects. Their portfolio showcases a great range of skill, creativity, and design. For their dedication to innovation and providing a revolutionary and interactive means of educating LRCP's patients, ResIM and the LRCP site they've created are certainly worthy contenders for the SXSW Interactive Award in the Educational Resources category.</em></p>
<p>Read the entire article here: <a href="http://www.b2cmarketinginsider.com/trends-news/sxsw-interactive-award-finalist-resimlrcp-015219" target="_blank">http://www.b2cmarketinginsider.com/trends-news/sxsw-interactive-award-finalist-resimlrcp-015219</a></p>]]></description>
            <pubDate>Thu, 03 Mar 2011 09:16:52 -0500</pubDate>
            <link>http://res.im/sxswi</link>
            <guid isPermaLink="true">http://res.im/sxswi</guid>
        </item>        <item>
            <title><![CDATA[Improving Speed on Your Website]]></title>
            <description><![CDATA[How to improve the speed of your website by monitoring performance, preloading images, and removing code.]]></description>
            <pubDate>Thu, 24 Feb 2011 21:31:59 -0500</pubDate>
            <link>http://res.im/speed</link>
            <guid isPermaLink="true">http://res.im/speed</guid>
        </item>        <item>
            <title><![CDATA[ResIM Wins Applied Arts Interactive Annual Award]]></title>
            <description><![CDATA[<p>London, Ontario - Resolution Interactive Media (ResIM) is the proud recipient of an Applied Arts Interactive Annual Award. The digital agency is being recognized for a groundbreaking virtual tour that was developed for the London Health Sciences Centre and launched in September of 2010. </p><p><iframe src="http://player.vimeo.com/video/13125211?title=0&amp;byline=0&amp;portrait=0&amp;color=ABC100" width="545" height="310" frameborder="0"></iframe></p><p>After receiving entries from across the country, Applied Arts magazine selected ResIM for their innovative use of advanced full-frame video and way-finding guides designed to ease the anxieties felt by new cancer patients and their families. </p><p>The only small-market firm to win an award, Applied Arts has noted ResIM as being "a relatively young studio, and well worth keeping an eye on."</p><p>View the award winning tour online at <a href="http://lrcp.tours.lhsc.on.ca" target="_blank">http://lrcp.tours.lhsc.on.ca</a>. For a detailed blog post and case study video from ResIM please visit <a href="http://www.res.im/lrcp" target="_blank">http://www.res.im/lrcp</a> </p><p>Applied Arts is Canada's premier magazine of visual communications. Since 1986, the publication has delivered gorgeous imagery, strong opinion, timely information and essential industry insight to creative and marketing professionals. All winning entries will be highlighted in the March/April 2011 Interactive Awards issue.</p><p><strong>About ResIM</strong><br />ResIM is a collective of thinkers, designers, and straight-up geeks who produce award-winning web sites, web and mobile applications, and digital strategy for local, national, and international clients.</p>]]></description>
            <pubDate>Tue, 18 Jan 2011 00:00:00 -0500</pubDate>
            <link>http://res.im/resim-wins</link>
            <guid isPermaLink="true">http://res.im/resim-wins</guid>
        </item>        <item>
            <title><![CDATA[Philadelphia, Neither Born Nor Raised]]></title>
            <description><![CDATA[In some haphazard attempt to invest in its employees, ResIM sent a crack two-man recon team (@gvilleneuve and @andrewprocter) to Philadelphia for the Voices That Matter: iPhone Conference.]]></description>
            <pubDate>Tue, 14 Dec 2010 09:31:59 -0500</pubDate>
            <link>http://res.im/ios</link>
            <guid isPermaLink="true">http://res.im/ios</guid>
        </item>        <item>
            <title><![CDATA[Interactive Learning Modules]]></title>
            <description><![CDATA[Over the last couple of years ResIM has been a player in helping the Government of Alberta develop the digital component of its new curriculum.]]></description>
            <pubDate>Thu, 21 Oct 2010 09:31:59 -0400</pubDate>
            <link>http://res.im/alberta</link>
            <guid isPermaLink="true">http://res.im/alberta</guid>
        </item>        <item>
            <title><![CDATA[A New Direction in Patient Orientation]]></title>
            <description><![CDATA[The London Regional Cancer Program virtual orientation takes newly diagnosed cancer patients through a typical first visit at the clinic.]]></description>
            <pubDate>Thu, 16 Sep 2010 09:31:59 -0400</pubDate>
            <link>http://res.im/lrcp</link>
            <guid isPermaLink="true">http://res.im/lrcp</guid>
        </item>        <item>
            <title><![CDATA[We're Five Part 2]]></title>
            <description><![CDATA[A break-in, our first employee, and the project that really got things rolling...]]></description>
            <pubDate>Fri, 27 Aug 2010 15:15:00 -0400</pubDate>
            <link>http://res.im/fivept2</link>
            <guid isPermaLink="true">http://res.im/fivept2</guid>
        </item>        <item>
            <title><![CDATA[Anatomy of an Interface]]></title>
            <description><![CDATA[The components of a modern web interface.]]></description>
            <pubDate>Fri, 23 Jul 2010 00:00:00 -0400</pubDate>
            <link>http://res.im/anatomy</link>
            <guid isPermaLink="true">http://res.im/anatomy</guid>
        </item>        <item>
            <title><![CDATA[We've Been Reviewed]]></title>
            <description><![CDATA[Our new web site was recently reviewed by Applied Arts, Canada's visual communications magazine. ]]></description>
            <pubDate>Tue, 29 Jun 2010 15:22:15 -0400</pubDate>
            <link>http://res.im/app-arts</link>
            <guid isPermaLink="true">http://res.im/app-arts</guid>
        </item>        <item>
            <title><![CDATA[Drive vs. Draw]]></title>
            <description><![CDATA[The phrase is used everywhere and has become common in web marketing vocabulary. I don't take issue...]]></description>
            <pubDate>Fri, 25 Jun 2010 15:21:15 -0400</pubDate>
            <link>http://res.im/drive</link>
            <guid isPermaLink="true">http://res.im/drive</guid>
        </item>        <item>
            <title><![CDATA[Samsonite Canada: Case Study]]></title>
            <description><![CDATA[The iconic luggage brand turned to ResIM to make their mark in the digital channel.]]></description>
            <pubDate>Tue, 22 Jun 2010 15:22:15 -0400</pubDate>
            <link>http://res.im/samsonite</link>
            <guid isPermaLink="true">http://res.im/samsonite</guid>
        </item>        <item>
            <title><![CDATA[Resolution Interactive Media is 5!]]></title>
            <description><![CDATA[The story of ResIM dates back much farther than five years...]]></description>
            <pubDate>Mon, 21 Jun 2010 15:22:15 -0400</pubDate>
            <link>http://res.im/five</link>
            <guid isPermaLink="true">http://res.im/five</guid>
        </item>        <item>
            <title><![CDATA[Getting Mobile with ResIM]]></title>
            <description><![CDATA[<p>A recent report from Morgan Stanley predicts that based on the current rate of change and adoption, the mobile web will be bigger than desktop Internet use by 2015. (source: <a href="http://mashable.com/2010/04/13/mobile-web-stats/" target="_blank">Mashable</a>)</p>
<p>There you have it.</p>
<p>This means the majority of your customers and clients will be interacting with your web site and your business through a device they hold in the palm of their hand. &nbsp;It's not enough to simply be present, you should have a plan that centres around providing value through a mobile version of your web site or a platform-specific application.</p>
<p>Below is a case study video presenting our latest mobile project, a practical iPhone application for the window film industry:</p>
<p>
<object width="480" height="270">
<param name="allowfullscreen" value="true" />
<param name="allowscriptaccess" value="always" />
<param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=11439198&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=1&amp;color=dd4499&amp;fullscreen=1" /><embed type="application/x-shockwave-flash" width="480" height="270" src="http://vimeo.com/moogaloop.swf?clip_id=11439198&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=1&amp;color=dd4499&amp;fullscreen=1" allowscriptaccess="always" allowfullscreen="true"></embed>
</object>
</p>
<p>The strategy and development team at ResIM can help you make sense of it all and deliver something that is sharable, valuable, and in-line with existing business objectives.</p>
<p>For more information on how we can help, or to simply chat about the future of mobile and how to provide value to your customers, give us a call at 519-936-6674 or email <a href="mailto:jonathan@resolutionim.com">jonathan@resolutionim.com</a></p>]]></description>
            <pubDate>Sun, 20 Jun 2010 15:22:15 -0400</pubDate>
            <link>http://res.im/mobile</link>
            <guid isPermaLink="true">http://res.im/mobile</guid>
        </item>        <item>
            <title><![CDATA[Our Latest iPhone App]]></title>
            <description><![CDATA[<p>When it comes to solar window film most people are quite concerned with how the product will impact the view from inside their home or workplace. </p>
<p>In our annual review with <a href="http://www.windowfilmsystems.com" target="_blank">Window Film Systems</a> last year we presented a concept: "what if we created an iPhone application that allowed your customers to see what the view from their window looked like with solar film applied?"</p>
<p>The answer to this question is now available for free in the iTunes App Store.</p>
<p><img src="http://www.resolutionim.com/useruploads/images/wfsiphone.jpg" alt="" width="378" height="287" /></p>
<p>We developed an app that allows consumers and B2B purchasing-folk to take photos using the built-in iPhone camera (or choose existing images from the camera roll) and apply one of three solar window film products. Next, users of the app can save the 'filmed' photo to their photo gallery or email it (along with the name of the film).</p>
<p>Give the app a try and let us know what you think (<a href="http://bit.ly/97oMJA" target="_blank">download from iTunes</a>). There are a couple of updates planned for the next release but we're always up for feedback</p>]]></description>
            <pubDate>Mon, 05 Apr 2010 16:43:35 -0400</pubDate>
            <link>http://www.resolutionim.com/feed/latest-iphone-app</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/latest-iphone-app</guid>
        </item>        <item>
            <title><![CDATA[Samsonite Canada: Behind the Digital Curtain]]></title>
            <description><![CDATA[<p>At this point in the evolution of ResIM we're on the cusp of launching some really cool (and recognizable) projects. Problem is, we can't completely reveal them just yet. We can, however, show you some fleeting glimpses.</p>
<p>In this post we'll look at the work we're doing with Samsonite Canada.</p>
<p>Samsonite Canada selected us to plan, design, and grow their brand online. We're starting with a brand-focused web site and social media presence and building to full ecommerce over the next quarter.</p>
<p><img src="http://www.resolutionim.com/useruploads/images/samsonitepost2.jpg" alt="" width="510" height="287" /></p>
<p><em>At launch in early April the new Samsonite Canada web platform will feature rotating product information modules, details on collections and sets, an historical timeline, and brand-building video.</em></p>
<p><img src="http://www.resolutionim.com/useruploads/images/samsonitepost1.jpg" alt="" width="510" height="287" /></p>
<p><em>Need new luggage? This handy locator uses Google Maps to pinpoint the independent retailer nearest you. If you're in London, Ontario that retailer happens to be Kingsmills. Just sayin'.</em></p>
<p><img src="http://www.resolutionim.com/useruploads/images/samsonitepost3.jpg" alt="" width="510" height="287" /></p>
<p><em>We helped Samsonite Canada initiate a Facebook presence and have watched a small fan base grow into a robust and involved community. To emphasize the longevity of the brand (100 years in 2010) we suggested a contest allowing fans to tell the Samsonite story through photography while entering a draw for new luggage. </em><a href="http://www.facebook.com/pages/Samsonite-Canada/303801648645?ref=nf"><em>Visit the fan page here.</em></a></p>
<p>Stay tuned for additional posts later this week on other projects we've got in development.</p>]]></description>
            <pubDate>Tue, 23 Mar 2010 12:07:47 -0400</pubDate>
            <link>http://www.resolutionim.com/feed/samsonite-canada-behind-the-digital-curtain</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/samsonite-canada-behind-the-digital-curtain</guid>
        </item>        <item>
            <title><![CDATA[Cambrian College Site Launches]]></title>
            <description><![CDATA[<p>Last Wednesday, February 3rd marked the official launch of the new <a href="http://www.cambriancollege.ca/Pages/Home.aspx" target="_blank">Cambrian College web site</a>. &nbsp;This is one of the more advanced projects we've worked on so it was great to finally see the ribbon cut.</p>
<p>Just before launch I remembered to grab a screen capture of the previous Cambrian site:</p>
<p><img src="http://www.resolutionim.com/useruploads/images/oldcambrian.jpg" alt="" width="510" height="287" /></p>
<p>And now for the 'after' shot:</p>
<p><img src="http://www.resolutionim.com/useruploads/images/newcambrian.jpg" alt="" width="510" height="287" /></p>
<p>If you're interested, here's a little background on the project:</p>
<p>The strategic direction for the new <a href="http://en.wikipedia.org/wiki/Cambrian_College" target="_blank">Cambrian College</a> web site was set by a group representing real people expected to use and benefit from the site.  Starting here allowed us to ensure the pieces that fell into place as the project progressed were built on a foundation set by actual users.</p>
<p>Audience research and wireframe usability testing were implemented at varying points in the project to address user concerns, validate or eliminate assumptions, and guide the project from a macro perspective.</p>
<p>Having identified a valuable and interactive experience as a key success factor across all self-identified groups we created from scratch, again using actual members of the target audience, a series of <a href="http://www.cambriancollege.ca/CurrentStudents/Pages/CurrentStudents.aspx" target="_blank">visually enhanced testimonial videos</a>.  Each video is integrated seamlessly with the web site allowing it to become part of an overall experience.</p>
<p>From a visual perspective the site borrows elements from <a href="http://en.wikipedia.org/wiki/Greater_Sudbury" target="_blank">Sudbury</a>'s natural surroundings while using artistic elements to convey a sense of modernity and progress.</p>
<p>Technically, the site is built on MOSS 2007 allowing staff and faculty to quickly update and manage content as the College grows and changes.</p>
<p>Feel free to send along any feedback or questions you have about the site -- we're always happy to help.</p>]]></description>
            <pubDate>Sun, 07 Feb 2010 23:40:34 -0500</pubDate>
            <link>http://www.resolutionim.com/feed/cambrian-college-site-launches</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/cambrian-college-site-launches</guid>
        </item>        <item>
            <title><![CDATA[Project Update: LRCP Video Shoot]]></title>
            <description><![CDATA[<p>The launch of the London Regional Cancer Program (LRCP) virtual experience is rapidly approaching. The project is progressing quite well with video production now all wrapped up and the user interface inches from approval.</p>
<p>Over the span of a week earlier this month I spent three days on location serving as 'executive producer' for the production (fancy, I know). Just recently the set photographer sent along some black and white gems from the shoot:</p>
<p><img src="http://www.resolutionim.com/useruploads/images/lhscpost07.jpg" alt="" width="510" height="287" /></p>
<p><em>Director Francois Driessen (left) and I deep in conversation. I wasn't nearly as angry or intense as this shot makes me look.</em></p>
 
<p><em><img src="http://www.resolutionim.com/useruploads/images/lhscpost05.jpg" alt="" width="510" height="287" /></em></p>
<p><em>DP Gary Elmer and First Camera Assistant Chris Arnold configure the rig before getting underway.</em></p>
 
<p><em><img src="http://www.resolutionim.com/useruploads/images/lhscpost06.jpg" alt="" width="510" height="287" /></em></p>
<p><em>Reviewing footage with our client. That's ResIM's very own Mike Almond peeking out from behind the door - captured!</em></p>
 
<p><em><img src="http://www.resolutionim.com/useruploads/images/lhscpost04.jpg" alt="" width="510" height="287" /></em></p>
<p><em>We used a 7D DigiCine and SteadyCam for this shoot -- cool things on the way!</em></p>
 
<p><em><img src="http://www.resolutionim.com/useruploads/images/lhscpost03.jpg" alt="" width="510" height="287" /></em></p>
<p><em>The 7D in action capturing part of the 'during your visit' scene.</em></p>
 
<p><em><img src="http://www.resolutionim.com/useruploads/images/lhscpost02.jpg" alt="" width="510" height="287" /></em></p>
<p><em>Tools of the trade</em></p>
<p>Watch this space in early March for an announcement on the launch of the project.</p>]]></description>
            <pubDate>Fri, 22 Jan 2010 11:28:47 -0500</pubDate>
            <link>http://www.resolutionim.com/feed/project-update-lrcp-video-shoot</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/project-update-lrcp-video-shoot</guid>
        </item>        <item>
            <title><![CDATA[Managing Expectations in the Web Design Process]]></title>
            <description><![CDATA[<p>The perfect web project is one that runs smoothly from start to finish with a client who's expectations are consistently exceeded.  I find my account and project management role is made much easier when I'm involved in setting and managing these expectations.</p>
<p><em>Here's how we do it at ResIM:</em></p>
<h3>Cost</h3>
<p>Being super-transparent with cost is the best policy.  </p>
<p>By qualifying leads according to their acceptance of a certain budget range we're able to get around the less important stuff (cost) and pay more attention to the more important pieces (client and user goals, project planning, creative, etc.).</p>
<p>To help in this area we've started publishing pricing on our web site.  Others like <a href="http://onwired.com/how-much-will-it-cost/" target="_blank">OnWired</a>, <a href="http://blueflavor.com/about/pricing-guide/">Blue Flavor</a>, and <a href="http://www.slimkiwi.com/" target="_blank">Slim Kiwi</a> are doing the same thing.</p>
<p>This approach helps ensure the leads coming from our site have already considered cost while eliminating the 'I have $2,000.00 and want to build Facebook' folks.</p>
<h3>Planning</h3>
<p>There's <a href="http://37signals.com/svn/archives/001050.php" target="_blank">much debate</a> (older post) on the subject of creating a functional spec but it's something we do for every project.  </p>
<p>Describing how the site or application will function before it's built firmly sets expectations and creates the scope creep boundary.  Uncovering additional features before the development team is unleashed is much better than a retrofit or rebuild halfway through. </p>
<p>A thorough planning process combined with the review limitations I mention below allows us to arrive at a pretty firm launch target, which is also included as part of the functional spec (we call it a Project Outline).</p>
<h3>Creative</h3>
<p> A recent addition to our process is the provision of a visual theme prior to presenting our clients with an interface composite.  The theme includes things like font, texture, colour, and photography and ensures expectations regarding these key elements are in the open before design time.</p>
<p>I'd also recommend trying something like these '<a href="http://john.onolan.org/getting-creative-mood-cards/" target="_blank">Moo'd Cards</a>' created by John O'Nolan -- great stuff.</p>
<h3>Revision Limitations</h3>
<p>Nobody, not even the client requesting them, likes to go through rounds and rounds of revisions to creative or planning.  To help mitigate this I include the following notes (not fine print) in our proposals:</p>
<p>On planning:</p>
<p><img src="http://www.resolutionim.com/useruploads/images/expectationspost2.gif.png" alt="" width="510" height="211" /></p>
<p>On creative:</p>
<p><img src="http://www.resolutionim.com/useruploads/images/expectationspost3.gif.png" alt="" width="510" height="110" /></p>
<p>On site review:</p>
<p><img src="http://www.resolutionim.com/useruploads/images/expectationspost1.gif.png" alt="" width="510" height="198" /></p>
<p>You don't have to be over-the-top in displaying these but in the interest of transparency, hiding them in fine print isn't the best idea.  I like to include these bubbles immediately following the corresponding description in the proposal.</p>
<p>I'm a big believer in using an open process where expectations are set on a mutual basis and consistently managed from start to finish.  Knowing where we have to be makes it easy to go above and beyond.</p>]]></description>
            <pubDate>Tue, 19 Jan 2010 15:58:54 -0500</pubDate>
            <link>http://www.resolutionim.com/feed/managing-expectations-in-the-web-design-process</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/managing-expectations-in-the-web-design-process</guid>
        </item>        <item>
            <title><![CDATA[Our First New Client of 2010]]></title>
            <description><![CDATA[<p>We're all thrilled to welcome Samsonite Canada to the ResIM client family.  In our role we'll be responsible for launching a Canadian ecommerce presence for Samsonite and managing marketing efforts in the digital channel, including social media.</p>
<p>For nearly 100 years, Samsonite has leveraged its craftsmanship and heritage to become a world leader in the luggage and travel industry.  Today, Samsonite continues to be an industry leader in product design and innovation. Samsonite&rsquo;s tagline - &lsquo;Life&rsquo;s a Journey&rsquo; - embodies the Brand, symbolizing the role Samsonite has continued to play in the multi-faceted lives of the global traveler.</p>
<p>We're thrilled to welcome Samsonite Canada to the ResIM client family! </p>
<p>In our role we'll be responsible for launching a Canadian ecommerce presence for Samsonite and managing marketing efforts in the digital channel, including social media.</p>
<p>For nearly 100 years, Samsonite has leveraged its craftsmanship and heritage to become a world leader in the luggage and travel industry.  Today, Samsonite continues to be an industry leader in product design and innovation. Samsonite&rsquo;s tagline - &lsquo;Life&rsquo;s a Journey&rsquo; - embodies the brand, symbolizing the role Samsonite has continued to play in the multi-faceted lives of the global traveler.</p>
<p>Stay tuned for updates as we push this iconic brand to online success in Canada.</p>]]></description>
            <pubDate>Tue, 05 Jan 2010 09:54:01 -0500</pubDate>
            <link>http://www.resolutionim.com/feed/our-first-new-client-of-2010</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/our-first-new-client-of-2010</guid>
        </item>        <item>
            <title><![CDATA[Sage Development Partner]]></title>
            <description><![CDATA[<p><img style="float: right; margin:10px 0 0 0;" src="http://www.resolutionim.com/useruploads/images/partner_devpartner_silver.gif.png" alt="Resolution is a Development Partner" width="200" height="153" />Are you using Sage software to manage workflow, crm, or accounting in your business? I'm pleased to announce that Resolution is now an official Sage Development Partner! This new partnership will allow our development team access to a plethora of resources from Sage, for solid integrations between Sage's business tools such as Business Vision and our enterprise web projects.&nbsp;</p>
<p>For more information on how we can help integrate your Sage system into customer facing web applications <a href="http://www.resolutionim.com/#contact">talk to us</a>!</p>]]></description>
            <pubDate>Thu, 17 Dec 2009 20:03:57 -0500</pubDate>
            <link>http://www.resolutionim.com/feed/sage-development-partner</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/sage-development-partner</guid>
        </item>        <item>
            <title><![CDATA[Why I Like Website Grader]]></title>
            <description><![CDATA[<p>I was chatting with Kyra after her return from <a href="http://www.meshmarketing.ca/" target="_blank">meshmarketing</a> last month when the subject of <a href="http://websitegrader.com" target="_blank">Website Grader</a> came up. At this point I hadn't heard of the tool but was intrigued enough to give it a try.</p>
<p>Here's how Website Grader describes their service:</p>
<blockquote>"Website Grader is a free seo tool that measures the marketing effectiveness of a website. It provides a score that incorporates things like website traffic, SEO, social popularity and other technical factors."</blockquote>
<p>I like the service as a starting point for evaluation, here's why:</p>
<ol>
<li><strong>Beyond keywords.</strong> There's a ton of learning that needs to happen around the idea that search engine optimization is simply about keywords. I like that Website Grader uses one of the most important factors of SEO (inbound links) as a component in their grading algorithm.</li>
<li><strong>Beyond SEO.</strong> Sure, things like content, keywords, meta descriptions, and inbound links are important to SEO, but SEO is only one component of digital marketing. Among other things, Website Grader uses the inclusion of a contact form or email newsletter registration form and the publication of an RSS feed as key grading points.</li>
<li><strong>Social popularity.</strong> With a seemingly endless number of places for online conversations to take place it's very difficult to measure the effectiveness of a web site in one quick evaluation. By using Digg submissions and Delicious bookmarks in their grading algorithm Website Grader is only scratching the surface, but at least these components are considered.</li>
<li><strong>Speed.</strong> It only takes a couple of seconds for Website Grader to return a grade that covers a wide range of criteria. A proper marketing evaluation takes much more time and is quite detailed but I like that Website Grader provides a decent starting point.</li>
</ol>
<p>It should be said that a more detailed evaluation of SEO, email marketing effectiveness, and the social media conversation is necessary prior to providing recommendations or making changes to a digital marketing program. If you're looking for a starting place though, go on and give Website Grader a shot and let me know what you think. </p>
<p>For an opposing opinion and some great comments from the people behind Website Grader, <a href="http://www.wolf-howl.com/seo/why-website-grader-is-a-bad-idea/" target="_blank">check this post out</a>. The business model HubSpot is using behind Website Grader is pretty obvious too, so take that into consideration.</p>
<p>Happy grading!</p>]]></description>
            <pubDate>Sat, 28 Nov 2009 14:06:44 -0500</pubDate>
            <link>http://www.resolutionim.com/feed/why-i-like-website-grader</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/why-i-like-website-grader</guid>
        </item>        <item>
            <title><![CDATA[Farewell to our big Johnson]]></title>
            <description><![CDATA[<p>When Brendan and I started ResIM we always knew the day would come when we'd have to part ways with a core member of our team -- it's an inevitable step in the evolution of any business. I think we kinda held on to a sense of optimism that this eventuality wouldn't ever come to pass.</p>
<p>Well, we received our wake-up call about a month ago when Owain Johnson, the first employee we ever hired, nervously announced he was leaving the company to move back up north to be closer to friends and family. I must admit, it takes balls to make a decision like this and I applaud Owain for putting himself first and jumping at an opportunity that doesn't come around often. As they say 'Don't be afraid to go out on a limb. That's where the fruit is.'</p>
<p>Owain, the dedication and commitment you've shown over the last four years has been remarkable and no doubt is a cornerstone of our success. It was just the three of us for quite some time but you stuck it out through the trials of a fledgling business and were always there supporting Brendan and I. </p>
<p>Good luck in your future endeavors, even if it involves building applications on an inferior operating system ;)</p>]]></description>
            <pubDate>Fri, 27 Nov 2009 13:05:47 -0500</pubDate>
            <link>http://www.resolutionim.com/feed/farewell-to-our-big-johnson</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/farewell-to-our-big-johnson</guid>
        </item>        <item>
            <title><![CDATA[LHSC Selects ResIM for Virtual Tour]]></title>
            <description><![CDATA[<p>We're thrilled to have been selected by&nbsp;<a href="http://www.lhsc.on.ca/" target="_blank">London Health Sciences Centre (LHSC)</a> to plan, design, and develop an interactive virtual experience for the London Regional Cancer Program (LRCP). &nbsp;The project will build on the success of the experience we created for <a href="http://www.trentu.ca/takeatour/" target="_blank">Trent University</a> and include cinema-quality video and interactive way-finding tools, all built on a scalable platform.</p>
<p>Kathryn Kozell, Coordinator Quality Initiatives at the LRCP, commented, "During the RFP process, the selection team was impressed with ResIM's patient and family-focused approach, their vision for the project and the collaborative strategies they employed in meeting the needs of our special patient and family population."</p>
<p>London Health Sciences Centre has been in the forefront of medicine in Canada for over 130 years and offers the broadest range of specialized clinical services in Ontario.</p>
<p>A PDF version of the <a href="http://www.resolutionim.com/useruploads/files/resim_lhsc_release.pdf" target="_blank">official media release is available here</a>.</p>]]></description>
            <pubDate>Tue, 24 Nov 2009 11:25:41 -0500</pubDate>
            <link>http://www.resolutionim.com/feed/lhsc-selects-resim-for-virtual-tour</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/lhsc-selects-resim-for-virtual-tour</guid>
        </item>        <item>
            <title><![CDATA[Diggnation: Exclusive Video]]></title>
            <description><![CDATA[<p>Here's some video I shot from the front of the stage at last night's Live Diggnation. Jon and I will post our thoughts later.</p>
<p>
<iframe width="560" height="315" src="http://www.youtube.com/embed/Exj6CEFBRhM" frameborder="0" allowfullscreen></iframe>
</p>]]></description>
            <pubDate>Wed, 18 Nov 2009 05:16:52 -0500</pubDate>
            <link>http://www.resolutionim.com/feed/diggnation-exclusive-video</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/diggnation-exclusive-video</guid>
        </item>        <item>
            <title><![CDATA[FOWD: Conference Recap]]></title>
            <description><![CDATA[<p>Today was the conference part of FOWD, where many of the speakers from the workshops along with a few others got up to do short presentations on the "future of web design," and giving tips about how to stay on top of the ever-changing web world. Here's our thoughts:</p>
<p><strong>Jon:</strong> I found it very interesting how much these speakers discussed CSS3 and the idea of pushing the boundaries and coming up with an experience for the user that may be different based on their browser. They mentioned how it's not a big deal to have an extra little nice feature added by CSS3 to a site that may only be seen by a small percentage of users, because other users won't know what they're missing out on. Another big idea brought up by each of the speakers was to take risks, as&nbsp;<a href="http://mikekus.com">Mike Kus</a> noted "Progress and innovation in design requires exploration. In exploration there is risk." I find it's very important to try to keep my designs from getting old and boring and too much the same, and that it takes risks to come up with something new and innovative. I really feel like they were trying to push everyone in that direction to continue to innovate and change the web and how users interact with it.&nbsp;</p>
<p><strong>Andrew:</strong> As I <a href="http://twitter.com/andrewprocter/status/5804611663">mentioned on Twitter</a>, the overarching theme of the presentations today was progressive enhancement. So what does that mean? Basically, we need to reward users whom are using better browsers. This can be accomplished by using CSS3 properties such as box-shadow and border-radius, and Safari-only animations like rotate and zoom. As designers, it's our responsibility to use these things, and push boundaries, so we don't let the web flounder in it's current state. Most of the speakers pushed "moving forward" with these new technologies, and some even went as far as to suggest giving IE6 text-only stylesheets to accomplish this. As Jon mentioned, other speakers that weren't getting into the technical side of things presented general design tips, and pushed taking big risks with your designs "just to see what happens." I came out of the conference feeling empowered and confident in the decision to provide enhancements to better browsers while serving graceful degradation to older (or less powerful) browsers.</p>
<p>Overall, we had a fantastic FOWD experience. Keep your eye on this site for more detailed posts about some of the speaker presentations.</p>]]></description>
            <pubDate>Wed, 18 Nov 2009 00:03:43 -0500</pubDate>
            <link>http://www.resolutionim.com/feed/fowd-conference-recap</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/fowd-conference-recap</guid>
        </item>        <item>
            <title><![CDATA[FOWD: Real World Accessibility for Web Designers]]></title>
            <description><![CDATA[<p>Derek Featherstone (<a href="http://twitter.com/feather">@feather</a> on Twitter) is an internationally-known authority on accessibility and web development, and listening to him speak you really get the feeling that there aren't many people who know this field as well as he does.</p>
<p>An engaging speaker, he opened up the eyes of his audience to the many considerations that must be taken when creating a truly accessible website. One thing that hit home immediately is Derek's abhorrence of the common CSS reset style: "<em>a { outline-style: none; }</em>". Many of us designers use this CSS rule to eliminate the ugly borders around clicked images in Firefox, without realizing that it greatly hampers accessibility. Users who must use keyboards to navigate sites can no longer tell where focus is, and therefore the site becomes immediately and completely unusable to them. Other important things I took away from Derek's presentation:</p>
<p><strong>Think of Ajax like a dumb waiter:</strong> You know those things they have in old houses that send food up and down from the kitchen? Well, you wouldn't serve a banquet through one of those, right? This is a great way to think of Ajax. Need to make a request for a small percentage of changes to the site? Ajax is your answer. Changing a large portion? A page reload might not hurt.</p>
<p><strong>Make the mental model match the process:</strong> This one is important, but also hard to explain in a blog post. Basically what it boils down to is exactly what it says. Make your app behave as in the same way you think. If a path through your app has to be re-ordered in order to match the mental model, so be it.</p>
<p><strong>Iconography should be on the content level:</strong> Iconography is part of content, not style, and therefore should be in the content level of your site, not a css background image.</p>
<p><strong>Pay attention to source order:</strong> The order your elements are in the source is the order a screen reader will read them out in. Make sure this is the order you want.</p>
<p><strong>Retain focus:</strong> Retain keyboard focus when using ajax to retrieve things, or put the focus where it should be, like inside the lightbox you just opened.</p>
<p><strong>Tabindex is important:</strong> <span style="text-decoration: line-through;">Assign tabindexes to the elements in your form.</span> Let the source order determine the tab index for your forms, but assign a -1 tabindex to something that you want to give keyboard focus to programmatically.</p>
<p><strong>Test correction paths:</strong> Don't just test validation failing and succeeding, test correction paths as well. Sometimes these paths are the most important, and yet most often overlooked.</p>
<p>Derek's final point was that accessibility should be thought of throughout your entire project's workflow, and not just a rubber stamp at the end of the project. This is especially important when Flash apps are introduced to the mix, as it's almost impossible to make a Flash app fully accessible once it's already been developed.</p>
<p>Overall, Derek made a fantastic and eye opening presentation. I'll see if I can get his permission to re-publish his slides here, as there is an abundance of points that I can't touch on in a singular blog post.</p>]]></description>
            <pubDate>Mon, 16 Nov 2009 23:58:05 -0500</pubDate>
            <link>http://www.resolutionim.com/feed/fowd-real-world-accessibility-for-web-designers</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/fowd-real-world-accessibility-for-web-designers</guid>
        </item>        <item>
            <title><![CDATA[FOWD: Open Web Standards for the Rich Web]]></title>
            <description><![CDATA[<p><a href="http://twitter.com/mollydotcom" target="_blank">Molly&nbsp;Holzschlag</a> is an experienced web developer and open web standards evangelist, a member of the W3C and has most recently been working for Opera software. Her session was meant to help us all understand more about open web standards, where they have come from, where they are going, and all the challenges along the way.</p>
<p><strong><span style="font-weight: normal;">So we'll start it off with some of the basics. The web is meant to be as open, accessible and universal as possible in order to reach as many users as possible in the quickest and most effective amount of time. Molly touched on the different web philosophies, such as it being:</span></strong></p>
<ul>
<li>Accessible (available to all people)</li>
<li>Universal (universal across modalities)</li>
<li>User Agent Agnostic (available to any browser)</li>
<li>Platform Agnostic (available to any platform)</li>
<li>Global/Local (available to a range of languages and cultures)</li>
</ul>
<div>Molly also discussed that the experience doesn't always have to be the exact same from browser to browser or from platform to platform. We can't expect a site to function the exact same on a smart phone as it does on our desktop computers and as web designers we have to be aware of that and find ways to best display our content to our users.</div>
<div>It is very important for web applications especially to follow very strict standards in order for them to function properly and to keep bringing users back to them. Web applications need to do a couple of things:</div>
<ul>
<li>Encourage practical, accessible and meaningful interactivity</li>
<li>Encourage a "write once, play anywhere" philosophy (CSS, Javascript)</li>
<li>Provide proven standards-related technical and management benefits</li>
<li>Embrace backward compatibility and progressive enhancement</li>
</ul>
<div>This was all very good background information for me and to helped me understand and learn more about how the web needs to be in order for users to have the best possible experience. We've had some challenges throughout the years with these standards, especially when dealing in different browsers and technologies.&nbsp;</div>
<p>Probably the most common challenge now a days is designing and developing for Internet Explorer 6. We discussed the reason why it isn't necessarily going to be going away anytime soon because it is tied so heavily into the Windows OS that making big changes to it takes many years and lots of testing to make sure it works in all versions of Windows. As well, many users and companies still rely heavily on certain technologies integrated into IE6 that they can't work without. This makes it very challenging to support IE6, as we don't want to restrict our web sites from reaching their full potential in order to support outdated browsers.</p>
<p>Now to the future - there is some very interesting and exciting stuff coming down the pipe in terms of new web based technologies such as HTML5 and CSS3. HTML5 is going to help to bring a whole new experience to the web, one where even more of the functionality of a web page is going to be in the structure of the page instead of just in the behaviours of the page. The canvas tag, and being able to embed video straight onto a web page are just a couple of the exciting features coming from HTML5. And the best part? All major browsers are committed and ready to go full on with it!</p>
<p>CSS3 is also very exciting and has a lot of new ideas and functionality that has never been seen in CSS before. Features such as multiple backgrounds, opacity, media queries (which I thought was really neat), and font-embedding.&nbsp;</p>
<p>There is definitely a lot more to learn about when it comes to web standards and where it's still evolving and moving towards, I will be sure to try and stay on top of it and continue to learn more about how the web works and how we can bring it all together to the end user.</p>]]></description>
            <pubDate>Mon, 16 Nov 2009 19:56:48 -0500</pubDate>
            <link>http://www.resolutionim.com/feed/fowd-open-web-standards-for-the-rich-web</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/fowd-open-web-standards-for-the-rich-web</guid>
        </item>        <item>
            <title><![CDATA[Great People and Cool Tech at RX09]]></title>
            <description><![CDATA[<p>On October 29th we held a party to celebrate the launch of our new web site and to showcase some of the interactive side projects we've been working on.</p>
<p>The event was a success on all accounts. Thanks to all who attended, the <a href="http://www.artsproject.ca/index.shtml" target="_blank">ARTS Project</a> for being great hosts and to the <a>ResIM team</a> for all their hard work. </p>
<p><img src="http://www.resolutionim.com/useruploads/images/rx09-3.jpg" alt="Tweet visualizer using Papervision3D" width="510" height="287" /></p>
<p>The LCD pictured above is running a Flash application that uses the Twitter API and <a href="http://www.papervision3d.org/" target="_blank">Papervision3D</a> to pull in and display tweets marked with the hashtag '#rx09.' When posted, each tweet (including the account avatar) appears in a large view before dropping back to a 3D stream of all previous tweets. Stay tuned for a web release of this app soon. Thanks <a href="http://twitter.com/andrewprocter" target="_blank">Andrew</a>, nice work on this one.</p>

<p><img src="http://www.resolutionim.com/useruploads/images/rx09-2.jpg" alt="Infrared fun with virtual spray paint and LED lights" width="510" height="287" /></p>
<p>People had a ton of fun with this LED/spray can piece by <a href="http://twitter.com/bfarrgaynor" target="_blank">Brendan</a><a>.</a>&nbsp;&nbsp;This application uses infared light at 850nm captured using a special IR camera (behind the projection screen), allowing light blobs to be sent to interface technology such as Flash. In this case the light blobs created a spray paint effect allowing our guests to decorate the canvas without paint.</p>

<p><img src="http://www.resolutionim.com/useruploads/images/rx09-1.jpg" alt="Recognizing faces using technology from Squidder.com" width="510" height="287" /></p>
<p>It's not the greatest shot but the iMac in the background is running an augmented-reality application that is able to recognize faces by detecting areas of light/dark in face-like configurations. The detection technology is based on "Real Time Face Detection in Flash" from <a href="http://www.squidder.com/2009/02/26/realtime-face-detection-in-flash/" target="_blank">Squidder.com</a>. Great work <a href="http://www.twitter.com/gvilleneuve" target="_blank">Geoff.</a></p>

<p><img src="http://www.resolutionim.com/useruploads/images/rx09-5.jpg" alt="Showing of the new ResIM site" width="510" height="287" /></p>
<p><a href="http://twitter.com/jonrundle" target="_blank">Jon</a> watches while guests try out the new web site. Jon and <a href="http://twitter.com/keyboardcowboy" target="_blank">Owain</a> put a ton of work into this piece while throwing together a loop of the <a href="http://www.resolutionim.com/content/portfolio/">case study videos</a> we've compiled recently. I can't forget to thank <a href="http://twitter.com/kyrio" target="_blank">Kyra</a> for her calm demeanor and grace under fire -- definitely a welcome addition!</p>
<p>We all had a great time bringing this event to life and look forward to doing it all over again at 'RX10'!</p>]]></description>
            <pubDate>Mon, 16 Nov 2009 12:26:15 -0500</pubDate>
            <link>http://www.resolutionim.com/feed/great-people-and-cool-tech-at-rx09</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/great-people-and-cool-tech-at-rx09</guid>
        </item>        <item>
            <title><![CDATA[Exploring NYC: The Apple Store, Lincoln Center]]></title>
            <description><![CDATA[<p>We got into the city this evening at around 6:30pm and immediately headed to the Apple Store. Yea, we know, we're geeks. On the way back to the hotel we stopped by the Lincoln Center for a few photos and grabbed a bite to eat at a funky little restaurant called P.J. Clarke's. Here's a couple shot's from NYC so far:</p>
<p style="text-align: center;"><img style="border: 5px solid #FFFFFF;" src="http://www.resolutionim.com/fowd/images/inPost1.jpg" alt="" /></p>
<p style="text-align: center;"><img style="border: 5px solid #FFFFFF;" src="http://www.resolutionim.com/fowd/images/inPost2.jpg" alt="" width="333" height="500" /></p>
<p>Check our <a href="http://www.flickr.com/photos/resolutionim/sets/72157622795621376/" target="_blank">flickr pool</a> for more photos, or take a peek at them in the sidebar on this page.</p>]]></description>
            <pubDate>Sun, 15 Nov 2009 21:23:24 -0500</pubDate>
            <link>http://www.resolutionim.com/feed/exploring-nyc-the-apple-store-lincoln-center</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/exploring-nyc-the-apple-store-lincoln-center</guid>
        </item>        <item>
            <title><![CDATA[Photo: Waiting at the Airport]]></title>
            <description><![CDATA[<p>From time to time we'll be posting photos directly to the blog. Most of them will also appear in our <a href="http://www.flickr.com/photos/resolutionim/sets/72157622795621376/" target="_blank">Flickr feed</a>. Right now, we're bored and in the airport so here's a picture of the tarmac:</p>
<p><img src="http://www.resolutionim.com/fowd/images/1.jpg" alt="Buffalo Airport Tarmac" width="570" height="210" /></p>]]></description>
            <pubDate>Sun, 15 Nov 2009 14:12:15 -0500</pubDate>
            <link>http://www.resolutionim.com/feed/photo-waiting-at-the-airport</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/photo-waiting-at-the-airport</guid>
        </item>        <item>
            <title><![CDATA[Launching "Two Geeks In NYC"]]></title>
            <description><![CDATA[<p>Welcome to "Two Geeks In NYC", ResIM's new microsite for our trip to New York city. We're going to be at the <a href="http://events.carsonified.com/fowd/2009/nyc">Future of Web Design</a> conference Monday, November 16th and Tuesday, November 17th, and attend a live taping of <a href="http://revision3.com/diggnation/">Diggnation</a> on Tuesday night. Jon and I couldn't be more excited to be bringing you guys live updates from New York, so bookmark this page and check back often. We have some good content lined up for you to check out.</p>]]></description>
            <pubDate>Fri, 13 Nov 2009 19:51:13 -0500</pubDate>
            <link>http://www.resolutionim.com/feed/launching-two-geeks-in-nyc</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/launching-two-geeks-in-nyc</guid>
        </item>        <item>
            <title><![CDATA[meshmarketing Part - 02]]></title>
            <description><![CDATA[<p>You might think that after my <a href="http://www.resolutionim.com/feed/meshmarketing-part-01">post</a> about the <a href="http://www.resolutionim.com/feed/meshmarketing-part-01">meshmarketing</a> keynote, I&rsquo;d find an afternoon of how-to sessions somehow less exciting. Not so! As much as I do try to keep up to date with trends and to-don&rsquo;ts in digital marketing - I was really happy with the usefulness of the more hands-on, workshop style of the speakers in the afternoon.</p>
<p>Dan Martell, besides being a really energetic post-lunch speaker, was full of shareable ideas, real stories and tips for digital communications that aren&rsquo;t always obvious. He opened with something that I have thought about every day since the conference: &ldquo;Your website is NOT a brochure. It has the potential to operate as a 24-hour salesperson.&rdquo; I&rsquo;m curious about how far I could take this analogy (would you hire someone to represent your company if they dressed in polyester sweats &hellip; and you weren&rsquo;t Adidas in the 70s)? Another post perhaps!</p>
<p>Martell says that instead of thinking of conversions as something you do after generating traffic and following up - that web marketers should turn the process around. Convert first, follow up and then begin your version of traffic-building and in-bound marketing. To do this well, you need to figure out what on your website is high value (and there better be something). Make it easy for people to ask you a question or get in touch. Follow up with everybody who engages with you and do it within 24 hours &hellip; because building an audience IS lead generation.</p>
<p>Another highlight from the afternoon was hearing Dharmesh Shah speak. Co-founder and CEO of <a href="http://www.hubspot.com/" target="_blank">Hubspot</a> and author of <a href="http://OnStartups.com/">OnStartups.com</a>, he is self-deprecating, funny and full of extremely useful SEO and marketing tips for various platforms:</p>
<h3>Blogs</h3>
<ol>
<li>To brand or not? Company blogs are shared LESS.</li>
<li>Blog post titles are for humans!</li>
<li>Rarely shared: Product info, free trials, software documentation.</li>
<li>Frequently shared: New market data, education content, top-notch content.</li>
</ol>
<h3>Facebook</h3>
<ol>
<li>Facebook Advertising: The cheapest form of market research on the planet.</li>
<li>Fan pages are better than groups.</li>
<li>The next wave of Facebook search is not for ex-girlfriends: It&rsquo;s for local people-based services (real estate brokers, wedding photographers etc.) &hellip; built-in authenticity!</li>
</ol>
<h3>Twitter (Or How to Increase your Chances of Being Re-tweeted):</h3>
<ol>
<li>Longer words are more likely to be re-tweeted (interesting because it&rsquo;s non-intuitive).</li>
<li>Use the word &lsquo;please&rsquo; (but don&rsquo;t abuse it).</li>
<li>Tweet in the afternoon.</li>
</ol>
<p>Shah jokes that when we send it, we call it &lsquo;Direct Mail&rsquo; -- when we receive it, we call it &lsquo;Junk Mail&rsquo;. Remember that digital junk mail is even easier to filter out than the glossy paper that clogs our mailboxes. Make marketing about creativity and not cash. <em>Good</em> marketing doesn&rsquo;t convince people just to buy - it convinces them to sell.</p>
<p>--</p>
<p>Did you attend meshmarketing? What did you think?</p>]]></description>
            <pubDate>Fri, 13 Nov 2009 13:28:06 -0500</pubDate>
            <link>http://www.resolutionim.com/feed/meshmarketing-part-02</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/meshmarketing-part-02</guid>
        </item>        <item>
            <title><![CDATA[meshmarketing - Part 01]]></title>
            <description><![CDATA[<p>I had the pleasure of attending the first &lsquo;<a href="http://www.meshmarketing.ca/" target="_blank">meshmarketing</a>&rsquo; conference in Toronto on October 22nd. I have actually attended every &lsquo;mesh&rsquo; event since its inception in 2006 - first as a volunteer and then as a fully-fledged delegate. The joke is that one day I&rsquo;ll be a speaker or panelist - and will have run right through the ranks.</p>
<p>You might say that I&rsquo;m biased, then, towards the mesh franchise -- that I don&rsquo;t have the required objectivity to assess the quality of the conference -- but I would argue that meshmarketing had to work that much harder to make me sit up and take notice. Let&rsquo;s face it, I&rsquo;ve been overexposed.</p>
<p>I&rsquo;m happy to report that it offered me not only a moment of true inspiration, but a nice handful of tools to take home with me (and that&rsquo;s not even including the sweet <em>This Is Not A Paper Cup</em> by <a href="http://www.rightsleeve.com/" target="_blank">Rightsleeve</a>).</p>
<p>As <a href="http://gapingvoid.com/" target="_blank">Hugh McLeod</a> began his morning keynote, I knew that some people in the audience would be grumbling to their neighbours. I knew from some recent experiences at social media/digital marketing events that people wanted Data, Relevance (!) and How-to Manuals from these conferences. McLeod&rsquo;s keynote was &hellip; a little different.</p>
<p>McLeod talked about <a href="http://en.wikipedia.org/wiki/Malinowski" target="_blank">Bronislaw Malinowski</a>, <a href="http://en.wikipedia.org/wiki/Kula_ring" target="_blank">Kula</a> and the Trobriand Islanders. He noted that what people were doing on the Internet now with social media, they had been doing for thousands of years in different ways. People create meaning by interacting socially with objects -- physical and otherwise. The ritual of Kula is only meaningful because it is shared -- because it is social.</p>
<p>When asked what he would offer to the audience as a takeaway, he replied: <em>Share What You Love</em> -- and when asked to provide an answer to the question specifically for marketers, he said: <em>Social Objects</em>. People socialize by relating to objects -- these objects on the Internet can be videos, photos, stories, personalities or games. They are the things we find and share and talk about, so make it easy for people to talk about you or your product or your story by making things shareable.</p>
<p>These words stayed with me for the rest of my day and personally, I think a keynote should set the tone and take you into Big Idea Places, if you&rsquo;re lucky. I enjoyed going to the South Pacific with my coffee. And as an anthropology undergrad, I was just happy to hear the name &lsquo;Bronislaw Malinowski&rsquo; again.</p>
<p>[More to come in 'meshmarketing part 02' on the rest of my day!]</p>]]></description>
            <pubDate>Thu, 05 Nov 2009 14:24:06 -0500</pubDate>
            <link>http://www.resolutionim.com/feed/meshmarketing-part-01</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/meshmarketing-part-01</guid>
        </item>        <item>
            <title><![CDATA[RX09 - The ResIM Launch Party]]></title>
            <description><![CDATA[<p>We're throwing a party!</p>
<p>Why?</p>
<p>To thank our clients, vendors, and friends and to officially launch our brand new web site. This event is a great opportunity to meet new Resolution team members and to see the digital elixirs we've been concocting over the last year or so. Join us for cocktails and appetizers at The ARTS Project (<a href="http://www.artsproject.ca/" target="_blank">http://www.artsproject.ca/</a>) in London, Ontario on October 29th 2009 from 5:00 - 8:00 p.m.</p>
<p>There isn't a schedule of events so don't worry about missing anything -- just make sure to leave enough time for a couple of drinks and to check out the mad interactive displays the team has been cooking up.</p>
<p><a href="http://maps.google.ca/maps/ms?ie=UTF8&msa=0&msid=109097846175643134135.000476e06cc34f46705b8&source=embed&ll=42.98437,-81.247845&spn=0.020281,0.045447&z=15" target="_blank">Here's a Google Map</a> to both the ARTS Project and nearby parking.</p>
<p>See you Thursday!</p>]]></description>
            <pubDate>Mon, 26 Oct 2009 21:19:10 -0400</pubDate>
            <link>http://www.resolutionim.com/feed/rx09-the-resim-launch-party</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/rx09-the-resim-launch-party</guid>
        </item>        <item>
            <title><![CDATA[The Blogging Commitment]]></title>
            <description><![CDATA[<p>When discussing digital marketing strategy with new and/or existing clients, blogging is an activity I almost always recommend, or at least mention as an opportunity. &nbsp;At this point in the evolution of the websphere I think we're all aware of the benefits of blogging (if you need a refresher, there are plenty of reasons here:&nbsp;<a href="http://www.google.ca/search?q=benefits+of+blogging" target="_blank">http://bit.ly/1mL5Cy</a>).</p>

<p>With the importance of blogging covered, the next question I generally receive is 'I can hardly handle the work I have on my plate now, how in the world will I be able to consistently update a blog?' &nbsp;Here are some answers to that question:</p>

<ul>
    <li><strong>Set a schedule for as far ahead as you can.</strong> &nbsp;Sit down, brainstorm, and use a <a href="http://www.resolutionim.com/downloads/blogSchedule.pdf" target="_blank">schedule template like this one</a> (PDF) to come up with as many topics as you can.</li>
    <li><strong>Don't go it alone.</strong> &nbsp;If you work with a team of six, for example, each person would only have to commit to writing four posts per year in order for your blog to be updated twice monthly.</li>
    <li><strong>Help yourself remember.</strong> Use applications such as <a href="http://www.evernote.com/" target="_blank">Evernote</a> or social bookmarking services like <a href="http://delicious.com/" target="_blank">Delicious</a> to remember web sites, news articles, and blog posts that have sparked an idea you could write about.</li>
    <li><strong>Don't worry.</strong> Try to stick to your schedule, but don't lose sleep if you haven't posted in a couple of months. &nbsp;A few blog posts are better than none at all.</li>
</ul>
<p>Blogging is an enjoyable and rewarding exercise that doesn't have to be overly time consuming.&nbsp;If you have further questions about blogging, or aren't sure how to get started, feel free to <a href="http://www.resolutionim.com/#contact">get in touch with us.</a></p>]]></description>
            <pubDate>Fri, 23 Oct 2009 22:21:56 -0400</pubDate>
            <link>http://www.resolutionim.com/feed/the-blogging-commitment</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/the-blogging-commitment</guid>
        </item>        <item>
            <title><![CDATA[He was a co-op student at ResIM]]></title>
            <description><![CDATA[<p>Back when Zander Milroy <a href="http://www.resolutionim.com/feed/im-a-co-op-student-at-resim">joined us</a> in February, we didn't know what to expect out of a high school co-op student. We thought at most we would get someone who was passionate about the web and our industry, but had little hands-on experience. We could play to their strengths, and hand them simple XHTML edits and data entry tasks.</p>
<p>Zander defied our preconceptions in every way.</p>
<p>The co-op student that walked through our doors was a rock-star high school Flash developer, and contributed in a more-than-major way to a number of projects over the course of his stay here. We kept him on as a paid full-time employee over the summer, and are happy to report that our first co-op student experience was a resounding success.</p>
<p>Zander left us (with an open invitation to come back any time) at the beginning of September to pursue his post-secondary education at the University of Ontario Institute of Technology. We presented him with the parting gift of a copy of <em>Halo 3</em>, all the while knowing he doesn't own an Xbox on which to play it.</p>
<p>This video picks up with Zander cordially accepting the game, not knowing his real gift was stashed away in the women's washroom:</p>

<p><iframe width="420" height="315" src="http://www.youtube.com/embed/3PQyz8i22AM" frameborder="0" allowfullscreen></iframe></p>
<p><br />Zander is <a href="http://twitter.com/onefifth">@onefifth</a> on Twitter. You can also follow <a href="http://twitter.com/ResolutionIM">@ResolutionIM</a> to keep up with the goings-on at Resolution.</p>]]></description>
            <pubDate>Thu, 24 Sep 2009 09:50:24 -0400</pubDate>
            <link>http://www.resolutionim.com/feed/he-was-a-co-op-student-at-resim</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/he-was-a-co-op-student-at-resim</guid>
        </item>        <item>
            <title><![CDATA[Social-Cultural (Digital) Update from Toronto]]></title>
            <description><![CDATA[<p>Here are my highlights:</p>
<p>Third Tuesday<br />Shel Israel came out to the Berkeley Street Theatre to talk to a crowd of over 200 people about his new book, Twitterville. Co-author of Naked Conversations, Shel shared some of the stories that appear in the book that demonstrate how Twitter is changing the way we live, do business and build community. Unlike other &lsquo;how-to-use-twitter-to-make-money&rsquo; books, Twitterville focuses on remarkable personal stories and is more of an anthology than a guide. Read the AdAge review of Twitterville here.</p>
<p>Casecamp Benefit 2009<br />Where to begin? This year&rsquo;s casecamp featured a full afternoon of talks on social media, marketing and the power of the kittycat. I hate to pick favourites but I find that I keep returning to Ben Huh&rsquo;s presentation - he&rsquo;s funny, sure - but he also offered a couple of simple and valuable insights into how he built such a huge and profitable online community (i.e. The Cheezburger Network). </p>
<p>Monetizing community means that you have to get to a scale that matters.<br />Scaling is a function of business, so UNDISTRACT your company. <br />Human nature has a tendency to admire complexity but reward simplicity.<br />People choose to make their startups complicated for very human reasons (ego, pride, assumptions, sacred cows, secrets) and these are obstacles to success. </p>
<p>I also really enjoyed the presentation by Matt Wyndowe from Facebook. He shared some of Facebook&rsquo;s insight into the question of how communication tools affect social network size. The newest &lsquo;type&rsquo; of communication is what Facebook calls The Stream (Facebook&rsquo;s Twitteresque newsfeed that allows you to &lsquo;like&rsquo; or comment on people&rsquo;s updates, photos and conversations). This kind of interaction has increased the size of our Active Network (the network of people in your life that you engage with and influence on a weekly basis - family, friends, co-workers) by allowing 2x the amount of communication you can take in.</p>
<p>For example, have you noticed that we are starting to get used to the stream? I find that I wish I could &lsquo;like&rsquo; (or dislike) articles and advertising on other sites but the functionality just isn&rsquo;t there yet. How would your organization&rsquo;s website function differently if people could interact with it in the same way we do with Facebook? Something to consider.</p>
<p>I would be out of line not to mention Jason Scott, who kicked off the day to share his story about his cat Sockington (@sockington), who has more Twitter followers than Snoop Dogg, Kevin Spacey, Paris Hilton and Lady Gaga. What else can I say? People who like cats ... like them a lot. The real takeaways? </p>
<p>I hate bad and evil marketing and I hate bad and evil marketers.<br />Only robots would say, &lsquo;A brand is like a relationship with a friend.&rsquo;<br />Twitter is NOT a big, fat networking ATM.<br /></p>
<p><a title="Toronto International Film Festival" href="http://tiff.net/default.aspx">TIFF (Toronto International Film Festival)</a><br />Unrelated to social media, but highly relevant to me personally, I saw the North American premiere of Werner Herzog&rsquo;s My Son, My Son, What Have Ye Done and Bad Lieutenant: Port of Call New Orleans. I am a die-hard fan, so I enjoyed them both but I have to say that the latter really blew my mind. I didn&rsquo;t expect it to be so funny.</p>
<p>I was also extremely pleased that Herzog came out to introduce the Thursday afternoon screening of Bad Lieutenant and even stayed for the Q&amp;A - it had premiered at TIFF on Tuesday and I was NOT expecting to see him again after the opening of My Son, My Son. He was incredibly gracious and entertaining and I was doubly pleased that I was sitting in the third row for his surprise appearance. WOW.</p>]]></description>
            <pubDate>Wed, 23 Sep 2009 12:12:42 -0400</pubDate>
            <link>http://www.resolutionim.com/feed/social-cultural-digital-update-from-toronto</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/social-cultural-digital-update-from-toronto</guid>
        </item>        <item>
            <title><![CDATA[Emerging Leaders solidify future]]></title>
            <description><![CDATA[<p>Having participated in Emerging Leaders initiatives in the past I'm thrilled to learn of the decision to form a more permanent entity. &nbsp;When ResIM was first ramping up in 2006 it was Emerging Leaders that introduced me to the importance of building a strong community and engaging young citizens -- I felt, and still feel, that we can make a huge difference in this city.</p>
<p>The grassroots volunteer-driven initiative began in 2006 with support from TechAlliance, Fanshawe College and the City of London, and a goal to foster involvement, investment and voice for 25-44 year olds, a demographic key to London&rsquo;s future job market, assessment base and philanthropic sector.</p>
<p>In the past three years, EL has hosted four &ldquo;think tanks&rdquo; (attended by several hundred young leaders), to collect new ideas to help improve London for the future; connected EL volunteers to positions on dozens of local nonprofit boards and special committees; paired talented ELs with business and community mentors; hosted a number of professional development seminars and educational opportunities (including an event with author and philanthropist Seymour Schulich); and provided ongoing opportunities to socialize, network and build-relationships.</p>
<p>Today, EL counts approximately 800 individuals as members and nearly 100 local organizations as partners. &nbsp;</p>
<p>For more on this exciting news please see the official notice on the&nbsp;<a href="http://www.emergingleaders.ca/news/emerging_leaders_solidify_future_plans_ivey_report_highlights_need_for_perm/" target="_blank">emerging leaders web site.</a></p>]]></description>
            <pubDate>Fri, 04 Sep 2009 08:59:36 -0400</pubDate>
            <link>http://www.resolutionim.com/feed/emerging-leaders-solidify-future</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/emerging-leaders-solidify-future</guid>
        </item>        <item>
            <title><![CDATA[It's official. I'm the first Gen X-er to join ResIM!]]></title>
            <description><![CDATA[<p>When Jonathan and Brendan started talking about branching out into the Toronto market in the spring of 2009, I was glad that they approached me to discuss a potential collaboration. Now, I&rsquo;m thrilled that we have decided to take it to the next level and make it official.&nbsp;I am Resolution&rsquo;s first Accounts &amp; Strategy Associate based in Toronto and I&rsquo;m really looking forward to helping build relationships and make projects happen in the city where I live.</p>
<p>When people ask me to give a brief synopsis of who I am and what I&rsquo;ve been up to for the entirety of my working life, I find it difficult to summarize. That said, I&rsquo;m always up for a challenge, so here goes:</p>
<p>I am a communications professional who has spent considerable time pondering the effects of web design on my clients&rsquo; business goals. My background is in public relations and marketing and I have been fortunate to work closely with clients whose needs bridged those disciplines. I cut my teeth at Thornley Fallis Communications in Toronto (working mainly with clients in the consumer and technology sectors) where I found myself surrounded by social media savvy colleagues and clients who were &lsquo;ready to go there&rsquo;. It was a fabulous place to explore the intersection of traditional public relations, digital marketing and social media possibilities.</p>
<p>Working with clients such as Visa Canada, Sharp Electronics and Travelocity provided me with insight into the communications needs of diverse industries and gave me the tools and the confidence to strike out on my own over the past year.</p>
<p>As I mentioned, I&rsquo;m always up for a challenge.</p>
<p>I&rsquo;m looking forward to working with Resolution not only because they&rsquo;re doing some really exciting work but because they&rsquo;re also pretty cool and much better at thunderstorm golf than I am.</p>]]></description>
            <pubDate>Thu, 03 Sep 2009 14:27:47 -0400</pubDate>
            <link>http://www.resolutionim.com/feed/its-official-im-the-first-gen-x-er-to-join-resim</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/its-official-im-the-first-gen-x-er-to-join-resim</guid>
        </item>        <item>
            <title><![CDATA[Resolution's Prank War]]></title>
            <description><![CDATA[<p>At the beginning of August, we got new space in our building, allowing us to &ldquo;divide and conquer.&rdquo; We put the accounts team in the basement (hey, it&rsquo;s where they belong), and the production team stayed upstairs in our main office. Since then, Romy&rsquo;s been decorating, Zander&rsquo;s been building <a href="http://twitpic.com/dm3ze" target="blank">Coke towers</a>, and we&rsquo;ve all been crafting beautiful websites. </p><p>But a prank war has been brewing here at ResIM, starting with Romy gluing things to my desk. It&rsquo;s turned into an all out upstairs vs. downstairs battle, and here&rsquo;s our first retaliation:</p>
<p>
<object width="480" height="385">
<param name="movie" value="http://www.youtube.com/v/cSQALX43TV8&amp;hl=en&amp;fs=1&amp;color1=0xe1600f&amp;color2=0xfebd01" /><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><embed type="application/x-shockwave-flash" width="480" height="385" src="http://www.youtube.com/v/cSQALX43TV8&amp;hl=en&amp;fs=1" allowscriptaccess="always" allowfullscreen="true"></embed>
</object></p>]]></description>
            <pubDate>Wed, 12 Aug 2009 11:20:24 -0400</pubDate>
            <link>http://www.resolutionim.com/feed/resolutions-prank-war</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/resolutions-prank-war</guid>
        </item>        <item>
            <title><![CDATA[Greetings, Salutations and Hello!]]></title>
            <description><![CDATA[<p>I'm Romy Poletti -- the newest (and potentially girliest) Resolution IM team member.&nbsp; My role here is that of Accounts &amp; Strategies Associate, working alongside Jonathan Kochis who has done an incredible job of building this company.</p><p>Today is 'officially' my first day, although for the past few weeks I've been hard at work setting up the additional ResolutionIM offices -- located directly below our other office. And, if you're so inclined, you can follow my adventures of setting up a flavourful 1960s techno office on my blog at <del>www.romypoletti.com</del> <ins>site offline</ins>.</p><p>Anyhoo, I can't chat for long - I already have a list of things that need to get done! I'm looking forward to working with this crew of amazingly talented guys, and I can't wait to get to know our extended family and clients.</p>]]></description>
            <pubDate>Tue, 04 Aug 2009 11:13:47 -0400</pubDate>
            <link>http://www.resolutionim.com/feed/greetings-salutations-and-hello</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/greetings-salutations-and-hello</guid>
        </item>        <item>
            <title><![CDATA[Wait, who's the new guy?]]></title>
            <description><![CDATA[<p>I stood at the entrance to my first class at Fanshawe College in September 2006 with one goal in mind: &ldquo;I want to work in the web industry.&rdquo;</p><p>The web was a different place back then. Internet Explorer 6 had 55% of the browser market (it&rsquo;s now at 15%), surfing the web on your phone was nearly impossible, and nobody had ever heard of Twitter.</p><p>Fast forward to February 2009, and my first time in the ResIM offices. The web had grown in leaps and bounds, the industry was more exciting than ever before, and my first task at Resolution was migrating content for a client of theirs. Since then I&rsquo;ve been given the opportunity to take on more and more responsibilities, showing off my creative eye and technical wizardry wherever possible.</p><p>I guess I impressed someone, because as of today I&rsquo;ve put pen to paper, and become the newest official member of the ResIM team. What do I do here? I design top notch interfaces, code web apps and flash pieces, and generally flex my geek muscle. I&rsquo;ll also be taking the reigns of the <a href="http://www.twitter.com/ResolutionIM">official Resolution Twitter account</a>, so get following people, because there&rsquo;s some interesting stuff coming down the pipe.</p><p>I&rsquo;m excited to be here, grateful for Jonathan and Brendan&rsquo;s faith in my abilities, and elated to be in such a great work environment. You&rsquo;ll be seeing much more of me in the next few months.</p>]]></description>
            <pubDate>Mon, 27 Jul 2009 08:39:06 -0400</pubDate>
            <link>http://www.resolutionim.com/feed/wait-whos-the-new-guy</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/wait-whos-the-new-guy</guid>
        </item>        <item>
            <title><![CDATA[A big ResIM welcome to the City of Brantford]]></title>
            <description><![CDATA[<p>We're pleased to announce that the City of Brantford has selected ResIM to design a new user interface and information architecture for the Tourism Brantford public web site. &nbsp;The site will be powered by MS SharePoint so the knowledge we've gained through the Cambrian College web redesign (launching in August) will definitely come in handy.</p>
<p>To get the project rolling we spent a day in the City experiencing it as tourists. Check out the Flickr set:&nbsp;<a href="http://www.flickr.com/photos/resolutionim/sets/72157621637753443/" target="_blank">http://www.flickr.com/photos/resolutionim/sets/72157621637753443/</a></p>
<p>&nbsp;</p>]]></description>
            <pubDate>Tue, 21 Jul 2009 12:36:34 -0400</pubDate>
            <link>http://www.resolutionim.com/feed/a-big-resim-welcome-to-the-city-of-brantford</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/a-big-resim-welcome-to-the-city-of-brantford</guid>
        </item>        <item>
            <title><![CDATA[A winning pitch, a radio spot, and a new client]]></title>
            <description><![CDATA[<p>Instead of writing three separate posts I thought I'd create one that captures some of what's been going on around here lately.</p>
<p>First, I recently took part in a 60-second pitch contest put on by the good people at <a href="http://www.techalliance.ca/" target="_blank">TechAlliance</a>&nbsp;and was fortunate enough to be a finalist, capturing third prize. &nbsp;To check out my pitch and those of the first and second place winners please visit the <del><a href="http://www.techalliance.ca/latest/want-to-see-who-won-this-years-60-second-pitch-contest.html" target="_blank">official TechAlliance announcement.</a></del> <ins>Web page removed</ins></p>
<p>Next, I was a guest on AM 1290 CJBK earlier this week discussing Twitter and the web for business. &nbsp;<a href="http://www.resolutionim.com/img/jonathanOnCJBK.mp3" target="_blank">Check out the audio</a>.</p>
<p>And finally, we're all pleased to announce the addition of the Canadian Agra Corporation to our client family. &nbsp;CA has selected us to build a series of public web properties starting with a product site for their Bio-Cube brand. &nbsp;Thanks CA, we look forward to working together!</p>]]></description>
            <pubDate>Thu, 25 Jun 2009 20:47:15 -0400</pubDate>
            <link>http://www.resolutionim.com/feed/a-winning-pitch-a-radio-spot-and-a-new-client</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/a-winning-pitch-a-radio-spot-and-a-new-client</guid>
        </item>        <item>
            <title><![CDATA[Join us at ResIM - we're hiring!]]></title>
            <description><![CDATA[<p>Here's the official posting:</p>
<p>As an Associate - Accounts and Strategy at ResIM you&rsquo;ll be responsible for maintaining and building strong client relationships through coordination of account service activities, regular contact with clients, and the organization of internal resources. &nbsp;You&rsquo;ll be fully versed at all times on the status and good standing of all ResIM accounts, and be prepared to step in to support the production team, correct problems, and resolve issues.</p>
<p>This position is critical to the ongoing health of ResIM client relations and, consequently, to the ongoing health of the company.</p>
<p>This position reports directly to Partner - Accounts and Strategy.</p>
<p><strong>Duties:</strong></p>
<ul><li>Assists in drafting web design and web strategy proposals.</li><li>Seeks out new business opportunities with new and existing clients.</li><li>Analyzes web/interactive properties for effectiveness and recommends improvements.</li><li>Organizes audience research and usability testing sessions.</li><li>Serves as primary contact for select clients.</li><li>Attends client presentations and meetings.</li><li>Responds to queries and follows up on client calls and emails.</li><li>Consults with production team in creation of client web sites and interactive media.</li><li>Attends networking and community events and industry trade shows</li><li>Promotes ResIM at every opportunity.</li></ul>
<p><strong>Qualifications:</strong></p>
<ul><li>Sense of humour</li><li>Post-secondary degree or diploma in business, marketing, advertising, or sales.</li><li>3 years experience in a web marketing or account management role on the agency or client side.</li><li>Above-average understanding of the web, social media, and digital culture.</li><li>Demonstrated ability to generate new business.</li><li>Superior communication and interpersonal skills.</li><li>Excellent presentation abilities.</li></ul>
<p><strong>Rewards:</strong></p>
<ul><li>Competitive base salary</li><li>Generous commission structure</li><li>Medical and dental benefits package</li><li>Relaxed work environment</li><li>Quarterly &lsquo;out of office&rsquo; experiences</li></ul>
<p>Please forward a PDF or MS Word version of your resume to <a href="mailto:hr@resolutionim.com">hr@resolutionim.com</a>. &nbsp;It&rsquo;s great of you to apply but please don&rsquo;t call and remember that we&rsquo;re only going to contact those we&rsquo;d like to interview. ResIM is an equal opportunity employer.</p>]]></description>
            <pubDate>Fri, 19 Jun 2009 12:00:41 -0400</pubDate>
            <link>http://www.resolutionim.com/feed/join-us-at-resim-were-hiring</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/join-us-at-resim-were-hiring</guid>
        </item>        <item>
            <title><![CDATA[We're winners!]]></title>
            <description><![CDATA[<p style="text-decoration: underline;"><strong>For immediate release:</strong></p>
<p>Trent University&#700;s online virtual tour (<a href="http://www.trentu.ca/takeatour" target="_blank">www.trentu.ca/takeatour</a>) has been honoured with a 2009 Gold Quill Award of Merit by the International Association of Business Communicators (IABC) and has won a Bronze Award in the 2009 Canadian Council for the Advancement of Education (CCAE) Prix d&#700;Excellence.</p>
<p>The tour was designed and developed by London&#700;s Resolution Interactive Media (ResIM) (www.resolutionim.com) as part of a broader strategic marketing plan to increase awareness and encourage applications to Trent University.</p>
<p>&ldquo;Research tells us that one in five students uses the web as their primary source of information when considering universities. We also know that close to 50 per cent of students who visit our campus will register as Trent students,&rdquo; said Marilyn Burns, director of Marketing &amp; Communications at Trent University. &ldquo;We needed a way to allow students to tour our exceptional campuses from anywhere in the world &ndash; and to hear about the distinct qualities of Trent from the students and professors themselves.&rdquo;</p>
<p>&ldquo;The tour is a well-planned convergence of strategic planning, user experience design, web development, video, and motion graphics&rdquo; notes Jonathan Kochis, Partner - Accounts and Strategy at ResIM. &ldquo;From the beginning it was important that we deliver an honest, informative, and target-audience appropriate online experience that wasn&#700;t over-produced or disingenuous.&rdquo;</p>
<p>Since its launch in March 2008, Trent&#700;s online virtual tour has had over 85,000 visitors.</p>
<p>The tour has been promoted through a targeted campaign on Facebook and other advertising&nbsp; that drives traffic to the University&#700;s 50,000-page website. Features in the tour include a graphic &ldquo;fly-in&rdquo; that situates Trent in North America; video of student and faculty &ldquo;heroes&rdquo; who speak about different aspects of the University; photo galleries; information about the cities of Peterborough and Oshawa; and various entry points to the Trent website.</p>
<p>The International Association of Business Communicators is a professional network of more than 15,500 business communication professionals in over 80 countries. Well over half of the IABC&#700;s members are private sector organizations. According to the 2009 Chair of the Gold Quill Awards, &ldquo;entries are judged rigorously against international criteria that consider strategic alignment and tangible outcomes as key measures of excellence.&rdquo;</p>
<p>The Canadian Council for the Advancement of Education is the professional association for educational advancement professionals. CCAE judges gave the tour a near perfect score and a &ldquo;unanimous bronze&rdquo; stating that Trent &ldquo;succeeded where others couldn&#700;t with virtual tours.&rdquo;</p>
<p>ResIM is a specialized interactive marketing studio providing exceptional online strategy, web design, web development, and digital marketing services with a strong practice in helping clients engage youth audiences online.</p>
<p>------------------------------</p>
<p>For more information, please contact Jonathan Kochis, Partner - Accounts and Strategy, Resolution Interactive Media at (519) 860-6674 or jonathan@resolutionim.com</p>]]></description>
            <pubDate>Thu, 04 Jun 2009 13:38:48 -0400</pubDate>
            <link>http://www.resolutionim.com/feed/were-winners</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/were-winners</guid>
        </item>        <item>
            <title><![CDATA[Email marketing: You're doing it wrong]]></title>
            <description><![CDATA[<p>I was speaking with a client yesterday who became frustrated when a 'remove me from your mailing list' request was continually ignored.</p>
<p>After several requests, my client sent the following email:</p>
<blockquote>As per my voice mail and reply e-mail sent to you last week, please remove us from your mailing list.&nbsp; Your lack of respect for this request simply dictates that I will not contact you in the future when I have a need for your services.&nbsp; If you are going to include the option to be removed from your mailing list (which is the only way e-mail marketing campaigns should be sent), please provide a valid e-mail address.&nbsp; The address you provided below is always 'returned to sender'.</blockquote>
<p>I probably would have said something quite similar.&nbsp;</p>
<p>Now, here's how the email 'marketer' responded:</p>
<blockquote>Please don't go there with the whole "we will never call you". It's not my fault, I am just a small business trying to advertise without blowing thousands of dollars on meaningless ads and what not. I will rip my administrators head off first thing Tuesday Morning. You can't win these days: No soliciting-Take me off your list- Remove- Leave us alone. How can anyone ever expand a company that they have invested so much blood sweat and tears into if they have to sit in a welded metal box until they go Bankrupt :(</blockquote>
<p>The business owner has clearly fallen victim to 'immediate email response' syndrome and not given himself time to cool off.&nbsp; He's also not accepting fault for something that, as a business owner, falls squarely on his shoulders. The best way to handle this scenario would have been to quickly remove the name from the mailing list and follow-up with a brief 'sorry for the inconvenience' email.</p>]]></description>
            <pubDate>Thu, 28 May 2009 15:44:44 -0400</pubDate>
            <link>http://www.resolutionim.com/feed/email-marketing-youre-doing-it-wrong</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/email-marketing-youre-doing-it-wrong</guid>
        </item>        <item>
            <title><![CDATA[Twitter and higher education]]></title>
            <description><![CDATA[<p>Teens may be quick to adopt new means of digital communication and social networking tools but they're definitely not clamoring to join the Twitter ranks.</p>
<p>As discussed in my PodCamp London session (<a href="http://www.resolutionim.com/img/uploads/8e173ae97c0a2b82c0e3b45f458b20a7.pdf">PDF version of slides here</a>) and expanded by Dave Fleet in his post "<a href="http://davefleet.com/2009/04/youth-adults-strong-tiesweak-networks/" target="_blank">Youth vs. Adults: Strong Ties/Weak Networks</a>", teens seek stronger ties that just aren't available through Twitter.</p>
<p>Twitter, as compared to Facebook or MySpace, is much less personal and is more frequently used to build large, weak-tie networks.&nbsp; In fact, it's estimated that over half of Twitter users are over 35.</p>
<p>The above facts and observations lead me to frequently recommend Twitter as a tool to strengthen ties with alumni as opposed to communicating with recruits or even undergraduate students.&nbsp; As always, having sound social media policies in place and using a segment-specific mix of tools and platforms is always the best approach.</p>]]></description>
            <pubDate>Wed, 13 May 2009 22:17:19 -0400</pubDate>
            <link>http://www.resolutionim.com/feed/twitter-and-higher-education</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/twitter-and-higher-education</guid>
        </item>        <item>
            <title><![CDATA[Three new clients join the ResIM family]]></title>
            <description><![CDATA[<p>We're thrilled to welcome three new web design clients to the fold:</p><ul><li>McKenzie Lake Lawyers</li><li>Case 'N Drum Oil</li><li>Toadjumps.com</li></ul><p>Stay tuned through June and July for launch updates.</p>]]></description>
            <pubDate>Wed, 13 May 2009 21:45:20 -0400</pubDate>
            <link>http://www.resolutionim.com/feed/three-new-clients-join-the-resim-family</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/three-new-clients-join-the-resim-family</guid>
        </item>        <item>
            <title><![CDATA[Another great reason to attend PodCamp London]]></title>
            <description><![CDATA[<p>PodCamp London is shaping up to be a huge success.&nbsp; Kudos to the organizing committee for bringing things together for the rest of us to enjoy.</p>
<p>While on the subject of enjoyment I'm pleased to announce that ResIM will be playing a part in post-PodCamp festivities.&nbsp; As part of our sponsorship role we've organized a free shuttle to transport all participants between the Station Park Hotel and Windermere Manor.&nbsp; Jump on the big yellow school bus starting at 7:15 p.m.</p>
<p>In addition to the 'PodCamp Party Bus' we'll be supplying free drink tickets to those interested in having one on the house.&nbsp; Just look for the geeky looking web guys.</p>
<p>Don't forget, if you're really bored between 10:30 and 11:00 a.m. feel free to drop in on my session, '<a href="http://podcamplondon.com/2009/04/15/youth-social-media-and-the-web-jonathan-kochis/" target="_blank">Youth, Social Media, and the Web</a>.'</p>
<p>For more on PodCamp London please visit <a href="http://www.podcamplondon.com" target="_blank">http://www.podcamplondon.com</a></p>
<p>See you Saturday!</p>]]></description>
            <pubDate>Wed, 22 Apr 2009 15:25:13 -0400</pubDate>
            <link>http://www.resolutionim.com/feed/another-great-reason-to-attend-podcamp-london</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/another-great-reason-to-attend-podcamp-london</guid>
        </item>        <item>
            <title><![CDATA[A recap of Mesh 09]]></title>
            <description><![CDATA[<p>Last week I was fortunate enough to attend <a href="http://www.meshconference.com/" target="_blank">Mesh '09</a>, Canada's leading web conference.&nbsp; Just like the web site says, Mesh was a chance for me to connect with people who are just as
interested and excited about the potential of the Web as I am&#8208;
people who want to know more about how it is changing the way we live,
work and interact with the world.&nbsp; I'm fascinated by what's happening online these days and consider myself lucky to be involved through ResIM.</p>
<p>I was thoroughly impressed by the Mesh experience, including the facility (MaRS), organization, and speaker roster.&nbsp; Anyone involved in the digital space should definitely consider attending Mesh '10 next year.</p>
<p>Instead of regurgitating content I've already written I'm going to provide links to the daily conference recaps as found on my blog:</p>
<p style="padding-left: 30px;"><strong>Day one</strong>: <a href="http://jonathankochis.com/?p=56" target="_blank">http://jonathankochis.com/?p=56</a> (highlights include a keynote by Kiva's Jessica Jackley and sessions on social media, web marketing, and open government).</p>
<p style="padding-left: 30px;"><strong>Day two</strong>: <a href="http://jonathankochis.com/?p=58" target="_blank">http://jonathankochis.com/?p=58</a> (highlights include a keynote by Toronto mayor David Miller and sessions on word of mouth marketing, social media marketing, and social media analytics).</p>
<p>Enjoy!</p>]]></description>
            <pubDate>Mon, 13 Apr 2009 13:38:29 -0400</pubDate>
            <link>http://www.resolutionim.com/feed/a-recap-of-mesh-09</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/a-recap-of-mesh-09</guid>
        </item>        <item>
            <title><![CDATA[Client Testimonial: The City of Port Colborne]]></title>
            <description><![CDATA[<p>One of the great things about the
Internet is that it allows small towns to compete with their larger
brethren online. A dynamic city experience is but a click away.</p>
<p>Of
course, the flip side of that benefit is the challenge that every
citizen with a dial-up, cable, or satellite Internet connection expects
their municipality to provide them with simple, intuitive, and usable
content.</p>
<p>We started the Port Colborne project
by forming a user council consisting of residents, business owners,
city council members, and city staff.&nbsp; By simply asking 'What do you
expect to find and do on the new web site?' we were able to accurately
define user needs, prioritize content on the home page, restructure the
information architecture, and provide a visual experience that sends
appropriate messages to all target segments.</p>
<p><a href="http://www.portcolborne.ca/" target="_blank"><img src="http://www.resolutionim.com/img/uploads/fd3fd4004ca6843ccf7d43cadedfbae9.jpg" alt="" /></a></p>
<p>Here's what our client had to say about working with us:</p>
<blockquote>Jonathan, Brendan and staff are
professional, courteous, and have a strong knowledge base. The team at
ResIM are very aware of time restraints and deadlines, deliver what is
promised, and worked well in a municipal environment.&nbsp; I would strongly
recommend this company.</blockquote>
<p><strong>Check out the site here:</strong> <a href="http://www.portcolborne.ca/" target="_blank">http://www.portcolborne.ca</a></p>]]></description>
            <pubDate>Mon, 23 Mar 2009 22:34:24 -0400</pubDate>
            <link>http://www.resolutionim.com/feed/client-testimonial-the-city-of-port-colborne</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/client-testimonial-the-city-of-port-colborne</guid>
        </item>        <item>
            <title><![CDATA[I'm a co-op student at ResIM]]></title>
            <description><![CDATA[<p>Cooperative education is supposed to be a fulfilling and valuable
learning experience, giving a student the opportunity to gain
experience and explore a possible future career. The team at here is providing that opportunity for me.</p>
<p>I'm a grade 12 student from A.B. Lucas Secondary School and have been
participating in a co-op program placement here for just over a week
now, and I can truthfully say it's been a great experience. Jonathan
and Brendan went out of their way to get me on board, even after a
typo in my resume left them with no way of contacting me in person
(I'll never do that again...) and they have continued to keep me
involved in the day to day inner workings of the business.</p>
<p>I've helped
out where I can, and am slowly learning some of the more technical and
practical aspects of the job, like how they stay organized, while
still quickly, efficiently and accurately delivering results to their
numerous clients. The casual yet professional environment makes
working here feel like working with real human beings rather than Web
Site Production robots.</p>
<p>I really didn't expect to fit in quite so well or be involved as much
as I have been, but I'm nothing but grateful for it and am definitely
looking forward to the weeks to come.</p>]]></description>
            <pubDate>Wed, 25 Feb 2009 09:00:00 -0500</pubDate>
            <link>http://www.resolutionim.com/feed/im-a-co-op-student-at-resim</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/im-a-co-op-student-at-resim</guid>
        </item>        <item>
            <title><![CDATA[Back from Podcamp Toronto '09]]></title>
            <description><![CDATA[<p>After a 'post-Podcamp Toronto '09' day of rest I'm back in the office and ready to summarize my experience.&nbsp; First, I thoroughly enjoyed myself.&nbsp; The people, atmosphere, and sessions were exactly as advertised: open, collaborative, and informative.</p>
<p>As a sponge for new information I took in all kinds of useful tidbits.&nbsp; Here are my three biggest takeaways, from a more macro perspective:</p><ol><li><strong>Hey corporate world, it's time to be open and transparent!&nbsp;</strong> As <a href="http://www.chrisbrogan.com/" target="_blank">Chris Brogan</a> mentioned in his session 'Heresy, Hypocrisy, and Sin', companies spent the last half of last century building giant walls around their processes, policies, and business practices.&nbsp; The time for this to change has come.&nbsp; All business owners, managers, and staff need to be open with clients and customers without fearing the dreaded release of information that may give competitors a leg up or drive customers away.&nbsp; If there's something in your operation that you're afraid to tell people about chances are you shouldn't be doing it in the first place.</li><li><strong>It's OK to make money.&nbsp;</strong> Again, this point comes from Chris Brogan (I did attend more than one session, seriously!).&nbsp; At last check I had to pay staff and rent and don't ever recall a time when food, gas, or an internet connection was free.&nbsp; There's absolutely nothing wrong with charging an appropriate amount for your services.&nbsp; Just remember to be honest and manage expectations early.</li><li><strong>Find your niche.&nbsp;</strong> <a href="http://fono.ca/about/" target="_blank">Sylvain Grand'Maison</a> hosted a session on finding your niche as it relates to podcasting.&nbsp; The same notion is true for business in general.&nbsp; At times it may seem difficult to create content for or reach out to only one, narrow segment of your potential target audience (at least I know it is for me), but as the saying goes 'riches are in niches.'&nbsp; Every business needs a competitive advantage; niche marketing is an excellent way to create separation among market entrants.</li></ol><p>I realize the points above have more to do with business than they do with social media, but hey, that's where I'm coming from and that's what Podcamp is all about - finding and interpreting information as it pertains to you.&nbsp; A special thanks to <a href="http://deys.ca/" target="_blank">Bill</a> and <a href="http://kyrio.wordpress.com/" target="_blank">Kyra</a> for showing this Podcamp n00b the ropes.&nbsp; See you at <a href="http://podcamplondon.com/" target="_blank">Podcamp London</a>!</p>]]></description>
            <pubDate>Tue, 24 Feb 2009 11:32:44 -0500</pubDate>
            <link>http://www.resolutionim.com/feed/back-from-podcamp-toronto-09</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/back-from-podcamp-toronto-09</guid>
        </item>        <item>
            <title><![CDATA[Digital Spring Cleaning]]></title>
            <description><![CDATA[<p>I think it's fair to say I'm known as the messy one in the studio. My desk regularly features stacks of project specifications, notes, sketches and other design materials. It's my 'pile' system and while I know where everything is, from time to time it just gets out of hand, so some things have to be digitized and some cleared out.</p>
<p>I went on a bit of a clean-up campaign this week to get things back in order and this sort of carried on to my personal files on the computer. I came across some photos and videos that I had captured last year while working on some interesting projects.</p>
<p>One of them was an interactive kiosk that we developed for a partner to help students pull current events and bus times on campus. This one was developed in Flash and was connected to a back-end database so that administrators could update the content remotely. Designing for touch screens is a lot different than a traditional screen, you have to over-simplify, show lots of movement response, and give audio feedback among other things.</p>
<div align="center">
    <div id="video">
        <img src="http://placehold.it/320x240&text=Video+no+longer+available" alt="Video no longer available" />
    </div>
</div>
<!--
<a href="http://get.adobe.com/flashplayer/">Get the Flash Player</a> to see this player.
<script type="text/javascript" src="http://www.resolutionim.com/js/swfobject.js"></script>
<script type="text/javascript">
	var s1 = new SWFObject("/flx/player.swf","ply","320","240","7","#FFFFFF");
	s1.addParam("allowfullscreen","true");
	s1.addParam("allowscriptaccess","always");
	s1.addParam("flashvars","file=/flx/kiosk.flv");
	s1.write("video");
</script>
-->
<p><em>This video was a capture of the first rough test of the interface, we later cleaned up the clicks and removed that nasty pointer.</em></p>
<p>There has been a lot of hype over touch displays lately. They've been around forever but have made some breakthrough improvements as of late. Microsoft launched their <a href="http://www.microsoft.com/surface/en/us/default.aspx" target="_blank">Surface</a> computer not too long ago and touch seems to be taking hold in the personal device industry. The big leap has been 'multi-touch' technology, this lets you interact with the interface using more than a single point of reference at one time. Quite cool. I've had multi-touch on <a href="http://www.iphone.com" target="_blank">my phone</a> since I traded in my <span style="text-decoration: line-through;">brick</span>&nbsp;Erricson last summer, it's <span style="font-weight: bold;">very</span> intuitive and I think it's safe to say we can expect to see this stuff cropping up everywhere.</p> <p> I wonder how long before I'm cleaning up the pile system on my computer desktop rather than my physical one, lets hope soon, cause I can write scripts for that!</p>]]></description>
            <pubDate>Mon, 16 Feb 2009 15:04:50 -0500</pubDate>
            <link>http://www.resolutionim.com/feed/digital-spring-cleaning</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/digital-spring-cleaning</guid>
        </item>        <item>
            <title><![CDATA[Suddenly our office looks much better]]></title>
            <description><![CDATA[<p>We still have a couple of minor touch-ups to tackle but for the most part the renovations are complete.&nbsp; A big thanks to Lisa @ re:design, the team from Limited Edition Painting, and David Cambria for his excellent brick work.</p>
<p><img src="http://www.resolutionim.com/img/uploads/6dd105b5c6b501ecaf911472761f95ca.jpg" alt="London Ontario Web Design - Resolution Interactive Media" /></p>
<p><em>This shot shows the new brick wall and productivity-enhancing television at the front of the space.</em></p>
<p>&nbsp;</p>
<p><img src="http://www.resolutionim.com/img/uploads/d396e039ad7424e9e06a713c4f433a4a.jpg" alt="" /></p>
<p><em>A close-up of the productivity-enhancer.&nbsp; Really, it hasn't been too bad.</em></p>
<p><br />View a slideshow of the Flickr set for more: <a href="http://www.flickr.com/photos/resolutionim/show/" target="_blank">http://www.flickr.com/photos/resolutionim/show/</a></p>]]></description>
            <pubDate>Mon, 02 Feb 2009 11:58:24 -0500</pubDate>
            <link>http://www.resolutionim.com/feed/suddenly-our-office-looks-much-better</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/suddenly-our-office-looks-much-better</guid>
        </item>        <item>
            <title><![CDATA[Client Testimonial: Hudson Boat Works]]></title>
            <description><![CDATA[<p>Craig at Hudson Boat Works had this to say about our services:</p>
<blockquote>

After a comprehensive re-branding project our company required a website platform that would clearly convey our new image while providing flexible CMS functionality.
<br><br>The search was centered on finding a web provider that would support our significant international growth and keep the site relevant with the sport and consumer base.&nbsp;
<br><br>Resolution IM was able to deliver a fantastic new site that has immediate front-end impact while providing intelligent back-end capability.&nbsp; The Resolution team promotes a collaborative approach and truly appreciates generational relevance.
<br><br>With their guidance we feel confident our website and image can maintain a competitive advantage in the increasingly important business of web based marketing and sales.

</blockquote>
<p>Check the new web site out at: <a href="https://www.hudsonboatworks.com/" target="_blank">https://www.hudsonboatworks.com</a></p>]]></description>
            <pubDate>Fri, 16 Jan 2009 12:04:00 -0500</pubDate>
            <link>http://www.resolutionim.com/feed/client-testimonial-hudson-boat-works</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/client-testimonial-hudson-boat-works</guid>
        </item>        <item>
            <title><![CDATA[Teens and web usability]]></title>
            <description><![CDATA[<p>I'm in the middle of analyzing the results of our latest usability testing session and thought I'd share some of my findings.</p><p>In '<a href="http://www.useit.com/alertbox/teenagers.html" target="_blank">Teenagers on the Web</a>', usability guru Jakob Nielsen points out that teens perform poorly online because they have insufficient reading skills, less sophisticated research strategies, and a dramatically lower patience level. He notes a success rate during the testing sessions of 55% for teens compared with an average of 66% across multiple age groups.</p><p>My recent sessions, where people of various age groups were asked to perform a series of tasks using a wireframe prototype, reveal a much smaller gap between the success rate of teens (64%) and the aggregate success rate (69%).</p>
<p>What's interesting to note is that 70% of all failures among teens were the result of 'giving up' on the task as opposed to performing the task incorrectly or exceeding a predetermined time threshold.&nbsp; This certainly supports Mr. Nielsen's point about a dramatically lower patience level.</p><p>On the topic of 'giving up' I should point out that on average teens gave up a full 16 seconds before reaching the failure time threshold of 00:01:30.&nbsp;</p>
<p>Taking into account the testing environment and the desire to succeed at a given task I would assume that, in unmonitored browsing, a teen may abandon a task somewhere between 50 seconds and one minute.&nbsp; This of course is a very broad generalization that could be impacted by numerous variables but at the very least is founded on research.</p><p>In all, my findings support those of Mr. Nielsen even though it's difficult to test reading and research skills on a navigation-centric wireframe.&nbsp; Teens certainly behave differently than adults when it comes to locating information online and should be carefully considered if they're a key target segment of your next web deliverable.</p>]]></description>
            <pubDate>Mon, 12 Jan 2009 16:41:15 -0500</pubDate>
            <link>http://www.resolutionim.com/feed/teens-and-web-usability</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/teens-and-web-usability</guid>
        </item>        <item>
            <title><![CDATA[When event-based marketing goes too far]]></title>
            <description><![CDATA[<p>Sponsorship of an event or even developing promotional programs in conjunction with a seasonal event (Halloween, Summer Holidays) are both sound and proven marketing tactics.&nbsp; I usually don't bat an eye at such programs as they have become part of the consumer landscape.</p>
<p>Today, however, something landed in my inbox that I'd like to share.&nbsp; Below is an actual piece of spam I received from a moving company here in London, Ontario:</p>
<p><img src="http://www.resolutionim.com/img/uploads/343440c2a625e8756cec8e0ee9338c5e.jpeg" alt="" /></p>
<p>On a day when we're supposed to remember those who died for the standard of living we have today it seems wrong to attempt to satisfy a marketing objective.&nbsp;</p>
<p>Honouring Remembrance Day by increasing market share and offering special incentives?&nbsp; Call it a fall promotion or perhaps a pre-winter event, anything but associating a promotion with Remembrance Day.</p>
<p>For more information on Remembrance Day in Canada please visit: <a href="http://www.veterans.gc.ca/eng/history/other/remember" target="_blank">http://www.veterans.gc.ca/eng/history/other/remember</a></p>]]></description>
            <pubDate>Wed, 05 Nov 2008 09:58:48 -0500</pubDate>
            <link>http://www.resolutionim.com/feed/when-event-based-marketing-goes-too-far</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/when-event-based-marketing-goes-too-far</guid>
        </item>        <item>
            <title><![CDATA[Latest launch: Hudson Boat Works]]></title>
            <description><![CDATA[<p>I'm thrilled to announce the launch of our latest project, a new public facing web site for Hudson Boat Works.&nbsp; Hudson Boat Works is a manufacturer of world and olympic championship racing shells based right here in London, Ontario.</p>
<p><img src="http://www.resolutionim.com/img/uploads/fa1056171c0d2b6774913c73dc9ae5c8.jpg" alt="" /></p>
<p>A high level of visual impact, tight brand integration, and a focus on Hudson athletes combine to deliver a memorable and effective experience for visitors.</p>
<p><img src="http://www.resolutionim.com/img/uploads/0c5f1a0663182f6fae4cb6e4b311f857.jpg" alt="" /></p>
<p>User research revealed that the Hudson target audience wanted to know who was rowing Hudson boats and what kind of success these athletes and teams were enjoying.&nbsp; Our solution was to focus on relevant, professional photography each with explanatory captions.</p>
<p><img src="http://www.resolutionim.com/img/uploads/8f6b7453a982750d438583efed27a926.jpg" alt="" /></p>
<p>The entire site, including the products section, is managed via our custom content management solution.</p>
<p>A big thanks to Craig, Jon, and the rest of the Hudson team for allowing ResIM to be part of such a great project.</p>
<p>For more, please visit <a title="World and Olympic Championship Racing Shells" href="http://www.hudsonboatworks.com" target="_blank">http://www.hudsonboatworks.com</a></p>]]></description>
            <pubDate>Mon, 03 Nov 2008 12:28:27 -0500</pubDate>
            <link>http://www.resolutionim.com/feed/latest-launch-hudson-boat-works</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/latest-launch-hudson-boat-works</guid>
        </item>        <item>
            <title><![CDATA[Democracy in the web design process]]></title>
            <description><![CDATA[<p>After voting in the federal election here in Canada last night and spurred by the coming election south of the border I got to thinking about how important it is to take a democratic approach in the web project development process.</p>
<p>While democracy implies a political reference simply by definition it is worth considering how 'putting the power in the hands of the people' is a very worth-while consideration in web design.</p>
<p><img src="http://www.resolutionim.com/img/uploads/b357000f3f1c946337f48a1b45e924f0.jpg" alt="" /></p>
<p><em>Members of the City of Port Colborne target audience take part in a participatory discovery session facilitated by ResIM at City Hall.&nbsp; The knowledge gained from this exercise will form the foundation of City's web redesign project.&nbsp; </em></p>
<p>Involving actual users in the development process is a huge part of our workflow here at ResIM.&nbsp; Here are some interesting points and tips I've learned through experience:</p>
<ol>
<li><strong> You can assume, but you need to know for sure.&nbsp;</strong> I've had numerous common assumptions overturned during the usability testing phase - it's incredible to closely watch as someone uses a web site.</li>
<li><strong>If you ask, they'll answer.&nbsp;</strong> Gathering members of the target audience in a group and asking them to provide suggestions that are important to them usually yields passionate responses.</li>
<li><strong>People are more important than technology.</strong>&nbsp; You can build the most powerful, technically complex application in the world but if it doesn't meet the needs of the target audience and provide real benefit to them it is a wasted investment.&nbsp; People generally don't care how a task is accomplished behind the scenes instead the real impression is made by how much utility is created by the application and how easy it is to use.</li>
</ol>]]></description>
            <pubDate>Wed, 15 Oct 2008 10:50:36 -0400</pubDate>
            <link>http://www.resolutionim.com/feed/democracy-in-the-web-design-process</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/democracy-in-the-web-design-process</guid>
        </item>        <item>
            <title><![CDATA[On location at Nipissing University]]></title>
            <description><![CDATA[<p><img src="http://www.resolutionim.com/img/uploads/76d467512943f8ec1dee0f1217b13b12.jpg" alt="" /></p>
<p><em>A student anchor getting ready to deliver information about his role in the NU neuroscience lab.</em></p>
<p>We've just wrapped up an incredible shoot at Nipissing Univeristy (NU) in North Bay, Ontario.&nbsp; The material we captured will be used to form a series of high-impact web videos aimed at bringing to life the many opportunities available for both future and current NU students. I'm always amazed at the stories these students have to tell and how great they are on camera with little or no prior experience.</p>
<p>A big thanks to Lisa and co. for their incredible hospitality during our three days at NU.</p>
<p>Stay tuned for the release of the finished web videos on the NU site - you won't be disappointed.</p>]]></description>
            <pubDate>Fri, 10 Oct 2008 16:38:14 -0400</pubDate>
            <link>http://www.resolutionim.com/feed/on-location-at-nipissing-university</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/on-location-at-nipissing-university</guid>
        </item>        <item>
            <title><![CDATA[Cambrian College chooses ResIM]]></title>
            <description><![CDATA[<p>We're thrilled to announce that Cambrian College has selected ResIM to redesign their public-facing web presence. This project will allow us to use our knowledge of the post-secondary landscape and our experience in delivering effective online solutions to a younger demographic.</p>
<p>Cambrian College is a <span class="mw-redirect">college of applied arts and technology</span> in Sudbury, Ontario.The largest college in Northern Ontario, Cambrian has over 4,400 full-time students and close to 90 full-time programs.&nbsp; An additional 9,000 registrations are taken annually for part-time
personal, professional and human resources development courses,
workshops and seminars.</p>]]></description>
            <pubDate>Mon, 25 Aug 2008 09:00:28 -0400</pubDate>
            <link>http://www.resolutionim.com/feed/cambrian-college-chooses-resim</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/cambrian-college-chooses-resim</guid>
        </item>        <item>
            <title><![CDATA[Client success at the Beijing Olympics]]></title>
            <description><![CDATA[<p>Hudson Boat Works, a manufacturer of world-class racing shells and a recent addition to our client roster, has helped three racing crews win Olympic medals at the games in Beijing.</p>
<p>The USA Men's Eight (bronze), Canadian Men's Pair (silver), and Canadian Lightweight Women's Double (bronze) all row Hudson boats, manufactured right here in London, Ontario.  Our congratulations to both the athletes and Hudson, stay tuned for the launch of the new HBW web site in October.</p>]]></description>
            <pubDate>Tue, 19 Aug 2008 21:24:32 -0400</pubDate>
            <link>http://www.resolutionim.com/feed/client-success-at-the-beijing-olympics</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/client-success-at-the-beijing-olympics</guid>
        </item>        <item>
            <title><![CDATA[SchoolShift Public Beta Released]]></title>
            <description><![CDATA[<p>SchoolShift.com is an online school resource where the power shifts to both current and potential students.  Rather than being told by a school that they're great, potential students can
hear it, or not hear it, from people who have been through the
experience.  Users can share opinions and help each other get through
school the only way it makes sense: together. No one ever said that
you had to go through school alone.</p>
<p>The SchoolShift team selected ResIM to plan, design, build, and implement their project due to our experience with youth-targeted initiatives and post-secondary institutions.</p>
<p>Make sure you go over and check SchoolShift out, they're currently seeking feedback and comments so let them (or us) know what you think.</p>
<p><a href="http://www.schoolshift.com" target="_blank">http://www.schoolshift.com</a></p>]]></description>
            <pubDate>Fri, 08 Aug 2008 07:55:00 -0400</pubDate>
            <link>http://www.resolutionim.com/feed/schoolshift-public-beta-released</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/schoolshift-public-beta-released</guid>
        </item>        <item>
            <title><![CDATA[Hello PHM Search Group]]></title>
            <description><![CDATA[<p>PHM Search Group, a London, Ontario based engineering recruitment firm, has hired us to plan and implement a new online strategy including a redesign of their current public web site.</p>
<p>Thanks PHM, this is going to be a great project!</p>]]></description>
            <pubDate>Tue, 08 Jul 2008 11:24:42 -0400</pubDate>
            <link>http://www.resolutionim.com/feed/hello-phm-search-group</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/hello-phm-search-group</guid>
        </item>        <item>
            <title><![CDATA[Webmail Upgrade]]></title>
            <description><![CDATA[<p>I've just completed some upgrades to our AJAX-driven webmail system @ <a title="Resolution Webmail" href="http://mail.resolutionim.com" target="_blank">mail.resolutionim.com</a> Existing ResIM clients will notice some new improvements to the base feature-set as well as some overall performance improvements. Webmail is a great secure alternative for checking your mail from a public terminal or when you're just on-the-go away from your computer.</p>]]></description>
            <pubDate>Thu, 03 Jul 2008 11:48:56 -0400</pubDate>
            <link>http://www.resolutionim.com/feed/webmail-upgrade</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/webmail-upgrade</guid>
        </item>        <item>
            <title><![CDATA[Gov. of Alberta extends contract with ResIM]]></title>
            <description><![CDATA[<p>Looks like we'll be a preferred multi-media supplier for the Government of Alberta for another year.  Our primary role within the contract is to provide web-deliverable multi-media learning modules to support K-12 education in the province.</p>]]></description>
            <pubDate>Wed, 18 Jun 2008 09:42:34 -0400</pubDate>
            <link>http://www.resolutionim.com/feed/gov-of-alberta-extends-contract-with-resim</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/gov-of-alberta-extends-contract-with-resim</guid>
        </item>        <item>
            <title><![CDATA[Firefox 3 Launch]]></title>
            <description><![CDATA[<p>The guys here are all ramped-up over today's launch of the&nbsp;Firefox Web Browser (Version 3). This much anticipated&nbsp;release&nbsp;is an event of global&nbsp;proportions&nbsp;that's even trying to set a&nbsp;<del><a title="Firefox attempt at Guinness World Record - Most Downloaded" href="http://www.spreadfirefox.com/en-US/worldrecord/" target="_blank">Guinness&nbsp;World Record for the most downloads in a single day. </a></del><ins>Web page removed</ins></p>]]></description>
            <pubDate>Tue, 17 Jun 2008 07:56:57 -0400</pubDate>
            <link>http://www.resolutionim.com/feed/firefox-3-launch</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/firefox-3-launch</guid>
        </item>        <item>
            <title><![CDATA[Latest Launch: Selling Solutions]]></title>
            <description><![CDATA[<p>I'm happy to announce the launch of our latest project, a combination public web site and online training platform for Selling Solutions.  The project allows our client to easily manage all public and training module content through a custom implementation of our content management system.</p>
<p>An automated payment and approval process ensures training registrants will be able to get started right away without delays for approval.</p>
<p>Feel free to visit the site and let me know what you think:</p>
<p><a href="http://www.thesalescoach.ca/">http://www.thesalescoach.ca</a></p>]]></description>
            <pubDate>Thu, 12 Jun 2008 08:16:05 -0400</pubDate>
            <link>http://www.resolutionim.com/feed/latest-launch-selling-solutions</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/latest-launch-selling-solutions</guid>
        </item>        <item>
            <title><![CDATA[Apple, you're letting me down]]></title>
            <description><![CDATA[<p>Being a small company it's quite beneficial from a cashflow perspective to finance our workstations from Apple as opposed to purchasing them outright.</p>
<p>With this in mind I picked up the phone way back in April and called the Apple store for business to get the ball rolling on what is usually a simple, painless process. As an existing business customer we've easily added new machines to our lease in the past and had them arrive at our door in less than two weeks.</p>
<p>I guess I've come to expect a level of service and responsiveness from Apple based on prior experiences.  We'll, apparently Apple has switched external financing companies since our last lease addition meaning I had to go through the entire application process again.  On top of that, our iMac was ordered just after the new iMac release which caused some confusion in what the sales rep referred to as 'the system.'</p>
<p>Finally, I received an email from Apple informing me that the order had finally been processed and would be shipping between May 27th and May 29th.</p>
<p>Great, not the best scenario, but it'll do.</p>
<p>Checking my inbox this morning I noticed an order status email from Apple telling me that shipping had been delayed with the new machine now arriving sometime between June 11th and June 17th.</p>
<p>In my opinion, the changes that have happened at Apple (the new financing company and the release of the new iMac) should not be felt by the customer making the purchase.</p>
<p>Apple should have all of my information on file ready to send to the new financing company and a new model release certainly shouldn't be a reason for a delay in order processing.</p>
<p>For now I guess we wait and hope the next purchase goes much smoother.</p>]]></description>
            <pubDate>Fri, 30 May 2008 10:02:04 -0400</pubDate>
            <link>http://www.resolutionim.com/feed/apple-youre-letting-me-down</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/apple-youre-letting-me-down</guid>
        </item>        <item>
            <title><![CDATA[Evaluating Local Online Advertising]]></title>
            <description><![CDATA[<p>As an SME owner I'm always on the lookout for attractive advertising opportunities that suit the nature of my business.  ResIM has a decent-sized client base here in London, Ontario but there's always room to improve and being in the web business my thoughts turn immediately to online advertisting.</p>
<p>The intent of this post is not to suggest one outlet over another but to provide you with some of the information necessary to make an informed decision.  The analysis below looks at various local online advertising opportunities in London with the exclusion of pay-per-click.  Incoming links are a key SEO strategy so I've decided to examine various outlets according to their Google PageRank and Alexa Ranking (the lowest number is best here).  Here's what I've found:</p> 

<ul>
    <li><strong>CanPages.ca.</strong> Google PageRank: 5/10, Alexa Rank: 91,000</li>
    <li><strong>Yellowpages.ca</strong> Google PageRank: 7/10, Alexa Rank: 6,400</li>
    <li><strong>London Chamber of Commerce </strong> Google PageRank: 4/10, Alexa Rank: 275,000</li>
    <li><strong>The Phone Guide</strong> Google PageRank: 4/10, Alexa Rank: 6,000,000 </li>
    <li><strong>London Link </strong> Google PageRank: 3/10, Alexa Rank: 3,600,000</li>
    <li><strong>LondonDirectory.ca </strong> Google PageRank: 1/10, Alexa Rank: 2,192,000</li>
</ul>

<p>Of course, cost and the audience you stand to reach are important parts of any online advertising opportunity so you'll need to pay close attention to these when analyzing your options.  The above information should at least give you an idea of how each outlet sits according to <a href="http://en.wikipedia.org/wiki/Google_PageRank" target="_blank">Google PageRank</a> and <a href="http://en.wikipedia.org/wiki/Alexa_Internet" target="_blank">Alexa</a>.</p>]]></description>
            <pubDate>Tue, 29 Apr 2008 10:41:03 -0400</pubDate>
            <link>http://www.resolutionim.com/feed/evaluating-local-online-advertising</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/evaluating-local-online-advertising</guid>
        </item>        <item>
            <title><![CDATA[He's Jon Rundle...]]></title>
            <description><![CDATA[<p>We're pleased to announce the addition of <a href="http://jonrundle.com/">Jon Rundle</a> to the ResIM team.  Jon has just completed a two-week internship and we actually offered him full-time employment (which he accepted!).  Please join us in welcoming the guy who will forever be known as 'Jon the Intern.'</p>]]></description>
            <pubDate>Mon, 28 Apr 2008 12:51:37 -0400</pubDate>
            <link>http://www.resolutionim.com/feed/hes-jon-rundle</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/hes-jon-rundle</guid>
        </item>        <item>
            <title><![CDATA[Trent University Case Study]]></title>
            <description><![CDATA[<p>Check it out:</p>
<iframe width="560" height="315" src="http://www.youtube.com/embed/9O437FZJ65U" frameborder="0" allowfullscreen></iframe>]]></description>
            <pubDate>Wed, 23 Apr 2008 16:15:05 -0400</pubDate>
            <link>http://www.resolutionim.com/feed/trent-university-case-study</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/trent-university-case-study</guid>
        </item>        <item>
            <title><![CDATA[Super Mario in Javascript]]></title>
            <description><![CDATA[<p>I excelled at it back in college, but at the time I have to admit that I thought JavaScript was a dying language. And rightly so, in the early 00's JavaScript on the web was commonly used for little more than basic styling or low risk client-side calculations that were hacked together in nasty spaghetti code.</p>
<p>Flash forward a few years and who knew that it would make such a dramatic comeback with developers, getting a sort of revitalization by the community. Not to mention improved support (on the consistency side of things) among browsers.</p>
<p>I found this little gem in my surfing this week, a <a href="http://blog.nihilogic.dk/2008/04/super-mario-in-14kb-javascript.html" target="_blank">very impressive re-production of Super Mario</a>, completely in 14k JavaScript no less! Wow!</p>]]></description>
            <pubDate>Wed, 09 Apr 2008 21:51:25 -0400</pubDate>
            <link>http://www.resolutionim.com/feed/super-mario-in-javascript</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/super-mario-in-javascript</guid>
        </item>        <item>
            <title><![CDATA[Design your very own ResIM nav menu!]]></title>
            <description><![CDATA[<p>While browsing over the weekend I came across a site from Poland featuring a tutorial on how to design our navigation menu.  Nice tutorial and a subtle ego boost ;)</p>
<p><del>http://magazyn.elementfx.com/?p=4</del> <ins>Site offline</ins></p>]]></description>
            <pubDate>Mon, 07 Apr 2008 13:55:43 -0400</pubDate>
            <link>http://www.resolutionim.com/feed/design-your-very-own-resim-nav-menu</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/design-your-very-own-resim-nav-menu</guid>
        </item>        <item>
            <title><![CDATA[Design of the Week!  Thanks Devlounge...]]></title>
            <description><![CDATA[<p>What a nice surprise for a Friday afternoon. Check out the feature here:</p>
<p><a href="http://www.devlounge.net/friday-focus/friday-focus-040408">http://www.devlounge.net/friday-focus/friday-focus-040408</a></p>
<p>Thanks Devlounge, and thanks to Sasha for letting me know about it.</p>]]></description>
            <pubDate>Fri, 04 Apr 2008 19:08:04 -0400</pubDate>
            <link>http://www.resolutionim.com/feed/design-of-the-week-thanks-devlounge</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/design-of-the-week-thanks-devlounge</guid>
        </item>        <item>
            <title><![CDATA[Webmail Improvements]]></title>
            <description><![CDATA[<p>I've just completed a brief upgrade and 'tune' of our roundcube webmail services for added speed and stability. I thought I'd let you know what's up.</p>
<p>Here's what's changed in the new release:</p>
<ul>
    <li>Added interactive installer script</li>
    <li>Fix folder adding/renaming inspired by #1484800</li>
    <li>Localize folder name in page title (#1484785)</li>
    <li>Fix code using wrong variable name (#1484018)</li>
    <li>Allow to send mail with BCC recipients only</li>
    <li>condense TinyMCE toolbar down to one line, removing table buttons (#1484747)</li>
    <li>Add function to mark the selected messages as read/unread (#1457360)</li>
    <li>Also do charset decoding as suggested in RFC 2231 (fix #1484321)</li>
    <li>Show message count in folder list and hint when creating a subfolder</li>
    <li>Distinguish SSL and TLS for IMAP connections (#1484667)</li>
    <li>Added some charset aliases to fix typical mis-labelling (#1484565)</li>
    <li>Remember decision to display images for a certain message during session (#1484754)</li>
    <li>Truncate attachment filenames to 55 characters due to an IE bug (#1484757)</li>
    <li>Make sending of read receipts configurable</li>
    <li>Respect config when localize folder names (#1484707)</li>
    <li>Also respect receipt and priority settings when re-opening a draft message</li>
    <li>Remember search results (closes #1483883), patch by the_glu</li>
    <li>Add Received header on outgoing mail</li>
    <li>Upgrade to TinyMCE 2.1.3</li>
    <li>Allow inserting image attachments into HTML messages while composing (#1484557)</li>
    <li>Implement Message-Disposition-Notification (Receipts)</li>
    <li>Fix overriding of session vars when register_globals is on (#1484670)</li>
    <li>Fix bug with case-sensitive folder names (#1484245)</li>
    <li>Don't create default folders by default</li>
    <li>Fixed some potential security risks (audited by Andris)</li>
    <li>Only show new messages if they match the current search (#1484176)</li>
    <li>Switch to/from when searcing in Sent folder (#1484555)</li>
    <li>Correctly read the References header (#1484646)</li>
    <li>Unset old cookie before sending a new value (#1484639)</li>
    <li>Correctly decode attachments when downloading them (#1484645 and #1484642)</li>
    <li>Suppress IE errors when clearing attachments form (#1484356)</li>
    <li>Log error when login fails due to auto_create_user turned off</li>
    <li>Filter linked/imported CSS files (closes #1484056)</li>
    <li>Improve message compose screen (closes #1484383)</li>
    <li>Select next row after removing one from list (#1484387)</p>
</ul>]]></description>
            <pubDate>Tue, 25 Mar 2008 14:02:37 -0400</pubDate>
            <link>http://www.resolutionim.com/feed/webmail-improvements</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/webmail-improvements</guid>
        </item>        <item>
            <title><![CDATA[A Trifecta of Launches]]></title>
            <description><![CDATA[<p>It's been a busy couple of days here in the lair.  We've launched three great sites and are preparing for some much-need office renos.  Here's a little more on the recent launches:</p>

<ol>
    <li>Auburn Developments (<a title="Montreal Student Residence" href="http://www.515stecatherine.com/" target="_blank">http://www.515stecatherine.com</a>).  We created the visual experience, built the site, and integrated it with our custom content management system.</li>
    <li>DeCloet Structures (<a title="Horse Barns and Riding Arenas" href="http://www.decloetstructures.com/" target="_blank">http://www.decloetstructures.com</a>).  The design team at ResIM did a great job on this redesign including a build demonstration and an intelligent Flash banner.  This site is also powered by our custom CMS.</li>
    <li>Toronto Glass Film (<a title="Toronto Ontario Window and Glass Film" href="http://www.torontoglassfilm.com/" target="_blank">http://www.torontoglassfilm.com</a>).  This light, optimized web site is going to really help generate interest and leads through search engines.</li>
</ol>]]></description>
            <pubDate>Tue, 25 Mar 2008 09:57:44 -0400</pubDate>
            <link>http://www.resolutionim.com/feed/a-trifecta-of-launches</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/a-trifecta-of-launches</guid>
        </item>        <item>
            <title><![CDATA[What's wrong with this picture?]]></title>
            <description><![CDATA[<p>I usually notice a couple of things I'd change when browsing various web sites, nothing major, and usually not important, but nonetheless.  Most times I quickly forget about it and move on.</p>
<p>Last night however, I noticed something on a local web site that really caught my attention (and held it).  On the home page of this particular site I was 'greeted' with the following message, in a very prominent location:</p>
<p><img src="http://www.resolutionim.com/img/uploads/a64f61cd90dd9c137c74b71561ea8614.png" alt="" /></p>
<p>What's wrong with this? A couple of things come to mind:</p>
<ol>
    <li>
        <strong>Warning, this is a new and improved site. </strong>
        <p>The entire feeling surrounding a warning message is one of negativity, especially when paired with the colour red and a clearly recognizable icon.  What's wrong with a new and improved site?  To me, this is a good, perhaps even newsworthy bit of information.  Definitely not one warranting a warning.</p>
    </li>
    <li>
        <strong>We're not quite done fixing what was broken but we don't care if you see it.</strong>
        <p>This is like me going to a job interview wearing skinny jeans with zippers at the bottom and a stained muscle shirt (never again).  In short, the message immediately communicates that something is wrong and that visitors should expect to see things out of place.  Again, an immediate negative connotation that doesn't need to happen.</p>
    </li>
    <li>
        <strong>The most important news we have for you is a warning.</strong>
        <p>The placement choice for this warning makes it the most prominent thing in the content area on the home page, the eye is immediately drawn to it.  The company has won numerous awards for excellence in its field but the visitor wouldn't know because the warning message overshadows nearly everything else.</p>
    </li>    
</ol>
<p>Since I'm not in the business of calling out other professionals and local businesses I'm going to keep this one strictly confidential.  My suggestions are merely that and likely worth about as much as you had to pay to read this post.</p>]]></description>
            <pubDate>Thu, 20 Mar 2008 16:39:17 -0400</pubDate>
            <link>http://www.resolutionim.com/feed/whats-wrong-with-this-picture</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/whats-wrong-with-this-picture</guid>
        </item>        <item>
            <title><![CDATA[Thanks Faveup]]></title>
            <description><![CDATA[<p>A big thanks to the team at Faveup for featuring the Trent University project in their Flash gallery. Go on, check it out and vote on what you see: <a href="http://creattica.com/design/resolution-interactive-media/3336" target="_blank">http://www.faveup.com/design/3336</a></p>]]></description>
            <pubDate>Wed, 12 Mar 2008 13:05:34 -0400</pubDate>
            <link>http://www.resolutionim.com/feed/thanks-faveup</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/thanks-faveup</guid>
        </item>        <item>
            <title><![CDATA[Trent University Virtual Experience Launches]]></title>
            <description><![CDATA[<p>The team here at ResIM is proud to unveil one of our strongest projects yet, a rich media virtual experience for Trent University (Peterborough, ON).</p>
<p>As the lead agency on this project we started by emersing ourselves in Trent culture and becoming familiar with the beautiful Peterborough campus.  Armed with adequate knowledge and only a 6-week window in which to plan, design, film, build, and launch the project we set-out on an incredible journey including on-site filming, transforming students into actors, creating an open interface, and building an intelligent, attractive solution.</p>
<p>The continuing aim of the project is to familiarize prospective students with Trent and its various campuses and impress them virtually just as much as the physical experience impresses during an actual campus visit.  Real students giving honest testimonials in HD video combined with a clean, expansive interface and intelligent programming allows us to effectively communicate with the target audience without the over-use of visual elements typical of pieces targeting a similar demographic.</p>
<p>Stay tuned for more posts on the technical nuances of this project, I think you'll be quite impressed.</p>
<p>Visit the site: <a title="Trent University Virtual Tour" href="http://www.trentu.ca/takeatour" target="_blank">http://www.trentu.ca/takeatour</a></p>]]></description>
            <pubDate>Mon, 10 Mar 2008 09:06:16 -0400</pubDate>
            <link>http://www.resolutionim.com/feed/trent-university-virtual-experience-launches</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/trent-university-virtual-experience-launches</guid>
        </item>        <item>
            <title><![CDATA[Uncle ResIM Wants You!]]></title>
            <description><![CDATA[<h3>About Us</h3>
<p>Resolution Interactive Media Inc. (ResIM) is a leading digital agency whose core competency is delivering exceptional web projects. If you have a have a background &lsquo;in&rsquo; and a passion &lsquo;for&rsquo; web design/development we want to hear from you.</p>
<h3>About You</h3>
<p>You love modern design. You know the name &lsquo;geek&rsquo; is a badge to be worn proudly. You've been in an argument more than once about your favorite distro. You may have been called a Mac fanboy/fangirl at least once in your life. Firefox is your friend.</p>
<h3>What You&rsquo;ll Be Doing (while not loosing to Brendan at Halo)</h3>
<ul>
    <li>Producing graphics showing web interface concepts and web layout designs</li>
    <li>Writing code for data-driven projects and rich interfaces</li>
    <li>Implementing interface designs in HTML using heavy CSS styling</li>
    <li>Generating and integrating custom Flash components into projects</li>
    <li>Providing assistance to non-production managers with technical requirement clarification and end-user documentation</li>
    <li>Attending production meetings and working with other production team members to solve problems and create work plans</li>
    <li>Contributing to the larger enhancements for existing projects</li>
</ul>
<h3>What We're Looking For (besides another new nurf gun target)</h3>
<ul>
    <li>Wonderful verbal and written communication skills</li>
    <li>Excellent organizational skills</li>
    <li>Strong eye for detail and excellent understanding of design principals</li>
    <li>An enthusiasm for usability (ease-of-use) </li>
    <li>Exceptional interface visual/conceptual design and development skills</li>
    <li>Exceptional problem determination and creative problem solving skills</li>
    <li>Ability to hand code web projects and create/maintain reusable code</li>
</ul>
<h3>Technology</h3>
<ul>
    <li>HTML</li>
    <li>CSS</li>
    <li>Javascript</li>
    <li>PHP</li>
    <li>SQL</li>
    <li>Actionscript</li>
</ul>
<h3>Tools</h3>
<ul>
    <li>Adobe Photoshop</li>
    <li>Adobe Illustrator</li>
    <li>Adobe (Macromedia) Fireworks</li>
    <li>Adobe (Macromedia) Flash</li>
    <li>Adobe (Macromedia) Dreamweaver </li>
</ul>
<h3>Required Education/Experience</h3>
<ul>
    <li>Diploma in a new media field (Web Development, Multimedia Design or similar)</li>
    <li>Experience in developing data-driven web and flash projects</li>
</ul>
<h3>Terms</h3>
<p>You want how much? Hmm&hellip;well that will make us broke. Let&rsquo;s chat though.</p>
<h3>What To Submit</h3>
<p>Your resume and a couple of URLs you feel show off a little of what you can do.  You *must* provide an example of your work to be considered for an interview. Keep in mind we&rsquo;re a web agency so it&rsquo;s your web applicable stuff we&rsquo;ll be looking for specifically.</p>
<p>Please send your resume and portfolio URL to <a href="mailto:hr@resolutionim.com">hr@resolutionim.com</a></p>
<p>Standard disclaimer: Only applicants chosen for an interview will be contacted.  ResIM is an equal opportunity employer.</p>]]></description>
            <pubDate>Fri, 07 Mar 2008 14:11:54 -0500</pubDate>
            <link>http://www.resolutionim.com/feed/uncle-resim-wants-you</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/uncle-resim-wants-you</guid>
        </item>        <item>
            <title><![CDATA[Patents In Web Software]]></title>
            <description><![CDATA[<p>A quick post, I came across some interesting news happening in the e-learning industry this week. <a href="http://news.therecord.com/News/article/312927" target="_blank">Blackboard a Learning Management System (LMS) maker out of the US has won a patent suit against Desire2Learn.</a> Desire2Learn is another popular LMS provider whose web based software is in active use in schools across Canada. If you're a recent post-secondary graduate you've likely used a Desire2Learn or Blackboard web product in at least a few of your courses. Blackboard made the news a while back when they acquired WebCT.</p>

<blockquote>Blackboard has been granted a patent that covers a single person having multiple roles in an LMS: for example, a TA might be a student in one class and an instructor in another. ... Blackboard gets $3.1 million and can demand that Desire2Learn stop US sales.</blockquote>

<p>Patents in any kind of software have been a very controversial issue over the last few years. It seems I'm hearing about businesses more and more that are able to successfully gain patents for fairly obvious software functionality. The Blackboard case is important news for web developers as you have to wonder what kind of precedent this will set for other web based software. Amazon seems to crop up in this arena from time to time but this is the first time I've seen a stand-alone web product do this. Most web developers consider the web to be a pretty open platform and have accepted the fact that ideas get copied and improved upon and that in the end it's better for everyone. My question is how did Blackboard get a patent like that? And who made that call? I'm all for originators getting their dues, but you have to ask where would any industry be without different takes on old ideas. Google, I'm looking at you.</p>]]></description>
            <pubDate>Mon, 25 Feb 2008 21:33:15 -0500</pubDate>
            <link>http://www.resolutionim.com/feed/patents-in-web-software</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/patents-in-web-software</guid>
        </item>        <item>
            <title><![CDATA[Hello iPhone, Welcome To My Life]]></title>
            <description><![CDATA[<p>I've been holding out for quite some time but finally caved to my inner-technofile and purchased an iPhone.  So far, all reviews are uber-positive.</p>
<p>Since the wireless data landscape in Canada is dominated by a select few monoliths the rates for said data are beyond acceptable.  So, to start, I've decided to use my iPhone as a mobile phone/iPod/organizer while taking advantage of its WiFi capabilities while at home, the studio, or the numerous other places I can find and join a network.</p>
<p>Here's what I like (love) so far:</p>

<ol>
<li><strong>Easy to Sync.</strong> After connecting the device to my MacBook I was immediately presented with an iTunes interface with overly-simple instructions on how to bring music, video, contacts, and iCal events from my notebook to the iPhone.  iPhoto also opened automatically and displayed the photos I'd taken with the phone.</li>
<li><strong>Touch Interface.</strong> Something about all the touching, tapping, sliding, and scrolling is very rewarding.  I'm going to have to find a safe way to clean the screen from time to time.  Coming from an older Samsung flip phone I just love how easy it is to add a contact by tapping and using the on-screen keyboard.</li>
<li><strong>Call Quality.</strong> I realize some of this has to do with the network but nonetheless am very impressed with the clarity of the calls I've placed to date.</li>
<li><strong>Visual Representation.</strong> When I browse a web site it looks just like it does (only smaller) on my workstation or notebook - no downgrading, no 'text-only' - all visual formatting remains in place.  The same goes for email.</li>
</ol>
<p>These are just a couple of the things I enjoy so far.  The keyboard will take a little training and the screen does smudge easily but I'm happy to deal with these minor cons in order to experience the multiple pros (like attracting unusual attention in the dressing room after hockey last night).</p>]]></description>
            <pubDate>Fri, 22 Feb 2008 17:02:19 -0500</pubDate>
            <link>http://www.resolutionim.com/feed/hello-iphone-welcome-to-my-life</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/hello-iphone-welcome-to-my-life</guid>
        </item>        <item>
            <title><![CDATA[We're In Some CSS Galleries]]></title>
            <description><![CDATA[<p>A big thanks to <a href="http://cssmania.com/" target="_blank">CSS Mania</a> and <a href="http://www.wakeupgallery.com/" target="_blank">Wake Up Gallery</a> for picking up the recent redesign of our web site (the one you're looking at, silly). Be sure to check out these two great sites for screen media inspiration; they're chalk-full of some of the freshest interface work on the web.</p>]]></description>
            <pubDate>Wed, 30 Jan 2008 12:19:47 -0500</pubDate>
            <link>http://www.resolutionim.com/feed/were-in-some-css-galleries</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/were-in-some-css-galleries</guid>
        </item>        <item>
            <title><![CDATA[New E.K. Gillin & Associates Web Site Launches]]></title>
            <description><![CDATA[<p>It really is great when we launch a project for a client and it immediately returns some or all of the investment. The new EKG site (<a href="http://www.ekginc.com/" target="_blank">http://www.ekginc.com</a>) was launched only one week ago but has already resulted in new business for the consulting firm. For more information on the project check out the live site or <del>this case study</del>.</p>]]></description>
            <pubDate>Mon, 28 Jan 2008 09:08:59 -0500</pubDate>
            <link>http://www.resolutionim.com/feed/new-ek-gillin-associates-web-site-launches</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/new-ek-gillin-associates-web-site-launches</guid>
        </item>        <item>
            <title><![CDATA[Trent University Chooses ResIM]]></title>
            <description><![CDATA[<p>It's certainly been an exciting couple of months here at ResIM.  To further this trend it is with pleasure that I announce our selection by Trent University, through a competitive bid process, to plan, design, develop, and launch an interactive virtual tour experience.  The tour will feature original, high quality video filmed on location and will be live on the public internet by February 29th 2008.</p>
<p>Founded in 1964 Trent University is a liberal arts and science-oriented institution located along the Otonabee River in Peterborough, Ontario.</p>
<p>For more on Trent University please visit <a href="http://www.trentu.ca/" target="_blank">http://www.trentu.ca</a></p>]]></description>
            <pubDate>Sat, 19 Jan 2008 20:35:01 -0500</pubDate>
            <link>http://www.resolutionim.com/feed/trent-university-chooses-resim</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/trent-university-chooses-resim</guid>
        </item>        <item>
            <title><![CDATA[Wikihelping]]></title>
            <description><![CDATA[<p>If you haven't discovered it yourself lately, our friends at <a href="http://www.wikipedia.org/" target="_blank">Wikipedia</a> are going through a new donation run. In my opinion, few sites on the web provide as much honest internet value as this project. I can't count how many times I've killed hours traversing articles going down related information paths and ending up on interesting topics that had nothing to do with what I had originally visited for.</p>
<p>I encourage you to take a moment over the next few days and throw a couple of bucks their way, bandwidth is expensive you know!</p>]]></description>
            <pubDate>Mon, 31 Dec 2007 17:10:27 -0500</pubDate>
            <link>http://www.resolutionim.com/feed/wikihelping</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/wikihelping</guid>
        </item>        <item>
            <title><![CDATA[Alberta Education Prefers ResIM]]></title>
            <description><![CDATA[<p>I'd like to take this opportunity to welcome Alberta Education to the ResIM client family.  The Government of Alberta's education division has selected ResIM, through a competitive bid process, as a preferred multimedia services provider to design and develop Flash-based learning modules.</p>
<p>Our proficiency with Flash from both an interface and ActionScript programming perspective along with my training and experience as a continuing education instructor helped see us through to the final selection.  Needless to say we're absolutely thrilled with this most recent success and look forward to helping bring K-12 education to life in Alberta!</p>
<p>Visit the blog often as I'll be posting more information about the work we've completed as it's released.</p>]]></description>
            <pubDate>Thu, 27 Dec 2007 15:56:34 -0500</pubDate>
            <link>http://www.resolutionim.com/feed/alberta-education-prefers-resim</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/alberta-education-prefers-resim</guid>
        </item>        <item>
            <title><![CDATA[ResIM Donates Web Site to London's RMH]]></title>
            <description><![CDATA[<p>Over a year ago the team here at ResIM decided to provide London's Ronald McDonald House with a new web site 'on the house.'  It is with great pleasure that we announced the official launch last night at the House's AGM.</p>
<p>The new site features an updated, friendly visual interface, fresh content, and a powerful content management system allowing House staff and volunteers to easily update their new web presence.</p>
<p>A big thanks to the RMH London team for being great to work with, we look forward to continuing our relationship and supporting the House wherever possible.</p>
<p>Visit the new site at <a href="http://www.rmhlondon.ca/">www.rmhlondon.ca</a></p>]]></description>
            <pubDate>Mon, 10 Dec 2007 16:13:27 -0500</pubDate>
            <link>http://www.resolutionim.com/feed/resim-donates-web-site-to-londons-rmh</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/resim-donates-web-site-to-londons-rmh</guid>
        </item>        <item>
            <title><![CDATA[Great Coverage for Grace Transport]]></title>
            <description><![CDATA[<p>Grace Transport, a valued ResIM agribusiness client, has received excellent media coverage in the most recent edition of Ontario Farmer magazine (November 6th 2007 - Production Section).Grace Transport, a valued ResIM agribusiness client, has received excellent media coverage in the most recent edition of Ontario Farmer magazine (November 6th 2007 - Production Section).</p>
<p>The cover story highlights Grace's cross border agricultural commodity shipping services with a focus on the sugar beet industry.</p>
<p>"The company is now making about 12,000 annual cross-border trips carrying wheat, corn, soybeans, agricultural byproducts, and upwards of 250,000 tons of Ontario sugar beets" reads an excerpt from the article.</p>
<p>Congrats to Bob and Carolyn Grace on running a great business and receiving exceptional coverage via this article.</p>
<p>For more information on Grace Transport please visit: <a href="http://www.gracetransport.com/">www.gracetransport.com</a></p>
<p>For information on Ontario Farmer please visit: <a href="http://www.ontariofarmer.com/sitepages/">www.ontariofarmer.com</a></p>]]></description>
            <pubDate>Thu, 08 Nov 2007 13:27:46 -0500</pubDate>
            <link>http://www.resolutionim.com/feed/great-coverage-for-grace-transport</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/great-coverage-for-grace-transport</guid>
        </item>        <item>
            <title><![CDATA[Hello NAL Insurance]]></title>
            <description><![CDATA[<p>NAL Insurance of London, Ontario has selected ResIM to redesign their existing web site in addition to two industry initiative microsites.  Each site will be managed via our powerful, super-simple content management solution and will be based on user research and motivation planning sessions.NAL Insurance of London, Ontario has selected ResIM to redesign their existing web site in addition to two industry initiative microsites.  Each site will be managed via our powerful, super-simple content management solution and will be based on user research and motivation planning sessions.</p>

<p>NAL Insurance has been providing Canadians with personal protection and roadside assistance services for over 50 years. While continuing to offer these services, NAL has evolved into an insurance brokerage, with products to suit both individual and business needs. NAL has developed proprietary disability, travel and personal accident insurance products as well as unique protection products for the trucking industry.</p>]]></description>
            <pubDate>Wed, 17 Oct 2007 12:24:30 -0400</pubDate>
            <link>http://www.resolutionim.com/feed/hello-nal-insurance</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/hello-nal-insurance</guid>
        </item>        <item>
            <title><![CDATA[New Games for CRAM Science]]></title>
            <description><![CDATA[<p>Keeping in step with an expanded user base and increasing popularity ResIM is pleased to announce the recent addition of two new games to the CRAM Science web site.Keeping in step with an expanded user base and increasing popularity ResIM is pleased to announce the recent addition of two new games to the CRAM Science web site.</p>

<p>The first game allows visitors to draw their science teacher, save their masterpiece, and send it to their friends.  The second game also summons creativity by allowing visitors to assemble science-related 'magnetic poems' through an easy 'drag and drop' process.</p>

<p>Both games are now available on the CRAM Science web site at:</p>

<p><del>http://www.cramscience.ca/game.php</del> <ins>Site offline</ins></p>]]></description>
            <pubDate>Tue, 18 Sep 2007 16:18:03 -0400</pubDate>
            <link>http://www.resolutionim.com/feed/new-games-for-cram-science</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/new-games-for-cram-science</guid>
        </item>        <item>
            <title><![CDATA[ResIM Welcomes Window Film Systems]]></title>
            <description><![CDATA[<p>Window Film Systems, a Canadian distributor of the finest products the window film industry has to offer, has selected Resolution to design and develop a powerful extranet as well as host and manage their existing public web presence</p>
<p>We are thrilled to welcome WFS to our family of clients and look forward to a long and prosperous relationship.</p>]]></description>
            <pubDate>Tue, 11 Sep 2007 16:01:39 -0400</pubDate>
            <link>http://www.resolutionim.com/feed/resim-welcomes-window-film-systems</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/resim-welcomes-window-film-systems</guid>
        </item>        <item>
            <title><![CDATA[ResIM Welcomes E.K. Gillin & Assoc.]]></title>
            <description><![CDATA[<p>E.K. Gillin &amp; Associates, a leader in environmental health and safety consulting and training, has selected Resolution to complete a re-design of their existing web site.</p>
<p>We are excited to be part of this project and look forward to a successful relationship with the team at EKG.</p>]]></description>
            <pubDate>Fri, 31 Aug 2007 10:32:52 -0400</pubDate>
            <link>http://www.resolutionim.com/feed/resim-welcomes-ek-gillin-assoc</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/resim-welcomes-ek-gillin-assoc</guid>
        </item>        <item>
            <title><![CDATA[New Web Site for Huron Perth Ag Services]]></title>
            <description><![CDATA[<p>Resolution is pleased to announce the launch of our latest project, a new public web site for Huron Perth Ag Services. The freshness can be viewed here:</p>

<p><a href="http://www.hpagservices.com/">http://www.hpagservices.com</a></p>
<p>Huron Perth Ag Services is located near Exeter, Ontario and provides customer-focused agronomic advice and a full line of crop protection and fertilizer products.</p>]]></description>
            <pubDate>Thu, 09 Aug 2007 14:03:42 -0400</pubDate>
            <link>http://www.resolutionim.com/feed/new-web-site-for-huron-perth-ag-services</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/new-web-site-for-huron-perth-ag-services</guid>
        </item>        <item>
            <title><![CDATA['The Harriston' Web Site Launches]]></title>
            <description><![CDATA[<p>Check out our latest launch, a public web site for a new luxury apartment building located in London, Ontario.</p>
<p><a href="http://www.theharriston.com/">www.theharriston.com</a></p>
<p>'The Harriston' web site features an attractive, usable interface and content powered by a custom content management system. Here's what our client, Auburn Developments, had to say about it:</p>
<blockquote>The site looks great, it helps sell the building and the image we're after. We're all thrilled with it. Thanks for all your hard work!</blockquote>]]></description>
            <pubDate>Tue, 07 Aug 2007 14:56:09 -0400</pubDate>
            <link>http://www.resolutionim.com/feed/the-harriston-web-site-launches</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/the-harriston-web-site-launches</guid>
        </item>        <item>
            <title><![CDATA[New DSA Web Site Launches]]></title>
            <description><![CDATA[<p>Since 1954, the DSA has been our nation's trade association for direct selling companies that manufacture and distribute goods and services away from a fixed retail location - through independent sales contractors (ISCs).</p>

<p>As the DSA's digital agency of record Resolution is pleased to announce the launch of their new public web site.  The modern, usable interface and bilingual content are powered by a custom content management system while a custom extranet allows association members to communicate, collaborate, and share ideas and information.</p>

<p>Visit <a href="http://www.dsa.ca/">www.dsa.ca</a> for more information.</p>]]></description>
            <pubDate>Mon, 09 Jul 2007 13:49:56 -0400</pubDate>
            <link>http://www.resolutionim.com/feed/new-dsa-web-site-launches</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/new-dsa-web-site-launches</guid>
        </item>        <item>
            <title><![CDATA[Auburn Developments Selects Resolution]]></title>
            <description><![CDATA[<p>Auburn Developments' latest luxury apartment building, The Harriston, offers residents a unique living experience. The Harriston is located at 500 Ridout street in London's downtown, steps from the Market District, Harris Park, and the Thames River.</p>

<p>Auburn has selected Resolution to design, develop, and launch a web site that will provide information, accurately represent the lifestyle at 500 Ridout, and allow visitors to reserve their suite. Watch for the web site to launch in late July.</p>]]></description>
            <pubDate>Mon, 09 Jul 2007 13:42:02 -0400</pubDate>
            <link>http://www.resolutionim.com/feed/auburn-developments-selects-resolution</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/auburn-developments-selects-resolution</guid>
        </item>        <item>
            <title><![CDATA[Study Participants Needed]]></title>
            <description><![CDATA[<p>Our usability team is conducting a study over the next month and requires participants meeting the following criteria:</p>
<ul>
    <li>13-17 years of age</li>
    <li>Male or female </li>
    <li>Familiar with the web and using it to register for various services</li>
</ul>
<p>Study sessions will take place on an individual basis with each session lasting no longer than 45 minutes. Participants will be required to provide transportation to and from our office.</p>
<p>Participants will receive cash compensation after completion of the study. For more information please contact Jonathan Kochis at 519-936-6674 or <a href="mailto:jonathan@resolutionim.com">jonathan@resolutionim.com</a>.</p> ]]></description>
            <pubDate>Wed, 04 Jul 2007 12:03:29 -0400</pubDate>
            <link>http://www.resolutionim.com/feed/study-participants-needed</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/study-participants-needed</guid>
        </item>        <item>
            <title><![CDATA[Kochis to Speak at National Conference]]></title>
            <description><![CDATA[<p>Jonathan Kochis, Account Manager and founding partner of Resolution Interactive Media, has been invited to speak at the Direct Seller's Association of Canada annual conference in Whistler, B.C. this June.</p>
<p>The focus of Kochis' speech will be web usability and how it should take precendence over all other facets of web design, development, and online business. 'No longer is it acceptable to simply have an online presence, users must be considered and catered to at every turn; web sites should be in a constant state of flux, growth, and adaptation' says Kochis.</p>
<p>For more information on the Direct Seller's Association of Canada please visit <a href="http://www.dsa.ca/">www.dsa.ca</a> (new version coming June 2007).</p>]]></description>
            <pubDate>Mon, 14 May 2007 14:36:15 -0400</pubDate>
            <link>http://www.resolutionim.com/feed/kochis-to-speak-at-national-conference</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/kochis-to-speak-at-national-conference</guid>
        </item>        <item>
            <title><![CDATA[New HDC Web Site Launches]]></title>
            <description><![CDATA[<p>Resolution Interactive Media, in conjunction with Hensall District Co-op (HDC), is pleased to announce the launch of the new HDC public web site.</p>

<p>The new site features colour coded division microsites, a comprehensive content management system (custom developed by Resolution), and a vastly improved and more usable visual interface.</p>

<p>To see exactly what we're talking about please visit <a href="http://www.hdc.on.ca/">http://www.hdc.on.ca</a></p>]]></description>
            <pubDate>Tue, 10 Apr 2007 15:37:26 -0400</pubDate>
            <link>http://www.resolutionim.com/feed/new-hdc-web-site-launches</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/new-hdc-web-site-launches</guid>
        </item>        <item>
            <title><![CDATA[Resolution Lands DSA Account]]></title>
            <description><![CDATA[<p>It is with great pleasure that Resolution Interactive Media announces our naming by the Canadian Direct Seller's Association as their digital agency of record. This relationship will see the relaunch of the Canadian DSA web site including a custom collaboration extranet and a new web site for the Direct Sellers Education Fund.</p>

<p>Founded in 1954, the DSA is the national trade association of leading firms that manufacture and distribute goods and services to consumers through independent sales contractors (ISCs) away from a fixed retail location.</p>

<p>Resolution Interactive Media is a London, Ontario based digital agency providing web design, web application development, usability testing, and online strategy services. For more information please visit the '<a href="http://www.resolutionim.com/">our story</a>' section of this web site.</p>]]></description>
            <pubDate>Wed, 07 Mar 2007 13:40:49 -0500</pubDate>
            <link>http://www.resolutionim.com/feed/resolution-lands-dsa-account</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/resolution-lands-dsa-account</guid>
        </item>        <item>
            <title><![CDATA[G & S Electric Chooses Resolution]]></title>
            <description><![CDATA[<p>G &amp; S Electric and Woodworking of London, Ontario has selected Resolution to design, develop, and launch a new web site for the company's electric and woodworking divisions. The new web site will feature a custom content management system allowing staff to easily update and modify a photo gallery and upload career postings.</p>

<p>G &amp; S is a family business founded in 1975. Since then, local residential and small commercial jobs have lead to larger, more ambitious projects, ranging from strip malls and restaurants to professional businesses and corporate offices.</p>

<p>Resolution Interactive Media is a London, Ontario based digital agency providing web design, web application development, usability testing, and online strategy services. For more information please visit the '<a href="http://www.resolutionim.com/">our story</a>' section of this web site.</p>]]></description>
            <pubDate>Wed, 21 Feb 2007 08:46:03 -0500</pubDate>
            <link>http://www.resolutionim.com/feed/g-s-electric-chooses-resolution</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/g-s-electric-chooses-resolution</guid>
        </item>        <item>
            <title><![CDATA[Shadoe Track Selects Resolution]]></title>
            <description><![CDATA[<p>TY-LAN Enterprises of London, Ontario has chosen Resolution to redesign and relaunch the existing web site for its Shadoe Track product (<a href="http://www.shadoetrack.com/">www.shadoetrack.com</a>). Shadoe Track is an innovative deck fastening system where tracks are fastened to deck joists and all joining is done below the deck surface.</p>

<p>Resolution Interactive Media is a London, Ontario based digital agency providing web design, web application development, usability testing, and online strategy services. For more information please visit the '<a href="http://www.resolutionim.com/">our story</a>' section of this web site.</p>]]></description>
            <pubDate>Thu, 15 Feb 2007 12:58:03 -0500</pubDate>
            <link>http://www.resolutionim.com/feed/shadoe-track-selects-resolution</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/shadoe-track-selects-resolution</guid>
        </item>        <item>
            <title><![CDATA[YourCampus.ca Web Site Live and Online]]></title>
            <description><![CDATA[<p>The team at Resolution is pleased to announce the launch of one of our most technically advanced web projects to date. YourCampus.ca is a student accommodation listing resource focused initially on the London, Ontario market. Students and the general public can browse through available listings, each complete with a Google Maps reference and map interactivity. Property owners can register, upload photos, post listing details, verify map coordinates, and pay for the listing through a simple, intuitive process.</p>

<p>The web site also features a very powerful search filter allowing visitors to find exactly the accommodation they are looking for, right down to the distance from the university or college of their choice.</p>

<p><del>YourCampus.ca</del> <ins>Site offline</ins></p>

<p>Resolution Interactive Media is a London, Ontario based digital agency providing web design, web application development, usability testing, and online strategy services. For more information please visit the '<a href="http://www.resolutionim.com/">our story</a>' section of this web site.</p>]]></description>
            <pubDate>Fri, 19 Jan 2007 13:10:00 -0500</pubDate>
            <link>http://www.resolutionim.com/feed/yourcampus.ca-web-site-live-and-online</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/yourcampus.ca-web-site-live-and-online</guid>
        </item>        <item>
            <title><![CDATA[Canadian Kawasaki Web Site Launches]]></title>
            <description><![CDATA[<p>As the flash development, content management, and programming team for this project, Resolution Interactive Media is proud to announce the launch of the new Canadian Kawasaki web site (<a href="http://www.kawasaki.ca/">www.kawasaki.ca</a>).</p>
<p>Partnering with Creative Donkeys, Canadian Kawasaki's agency of record, Resolution built a fully-functional flash web site with custom transitions, mouse-over actions, and colour-selectors all powered by a database and managed via a custom content management system.</p>
<p>Resolution Interactive Media is a London, Ontario based digital agency providing web design, web application development, usability testing, and online strategy services.&nbsp; For more information please visit the '<a href="http://www.resolutionim.com/">our story</a>' section of this web site.</p>]]></description>
            <pubDate>Mon, 11 Dec 2006 12:36:03 -0500</pubDate>
            <link>http://www.resolutionim.com/feed/canadian-kawasaki-web-site-launches</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/canadian-kawasaki-web-site-launches</guid>
        </item>        <item>
            <title><![CDATA[New Video Online]]></title>
            <description><![CDATA[<p>Check out our latest demo video detailing how we approach content management.&nbsp; This video demonstrates the simple process of managing a list of links and associated descriptions via a content management system we developed.</p>
<p><ins>We've updated our website and the video no longer exists.<br>Check out our <a href="http://www.resolutionim.com/">demo reel</a></ins></p>

<p>Resolution Interactive Media is a London, Ontario based digital agency providing web design, web application development, usability testing, and online strategy services. For more information please visit the '<a href="http://www.resolutionim.com/">our story</a>' section of this web site.</p>]]></description>
            <pubDate>Fri, 24 Nov 2006 17:37:43 -0500</pubDate>
            <link>http://www.resolutionim.com/feed/new-video-online</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/new-video-online</guid>
        </item>        <item>
            <title><![CDATA[Res 2.0 Live and Online]]></title>
            <description><![CDATA[<p>The time has finally come&hellip;the team of designers, programmers, and business managers here at ResIM are proud to present version 2.0 of our corporate web site.  A fresh new design, loads of new features, and a powerful content management system have all been rolled into this launch.  Be sure to check out our portfolio and the slick case studies as well as the media labs section for staff blogs and a sneak peak at what we're working on.  Have a look around and let us know what you think.</p>

<p>Resolution Interactive Media is a London, Ontario based digital agency providing web design, web application development, usability testing, and online strategy services. For more information please visit the '<a href="http://www.resolutionim.com/">our story</a>' section of this web site.</p>]]></description>
            <pubDate>Thu, 26 Oct 2006 16:43:03 -0400</pubDate>
            <link>http://www.resolutionim.com/feed/res-2.0-live-and-online</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/res-2.0-live-and-online</guid>
        </item>        <item>
            <title><![CDATA[HDC Chooses Resolution]]></title>
            <description><![CDATA[<p>Hensall District Co-op has chosen Resolution once again, this time to develop a new public web front for the Southwestern Ontario agricultural co-operative.  The new site will be clearly organized by department, present content in an easy-to-find and easy-to-read format, and allow HDC staff to edit both text and image content appearing on the site.  Stay tuned for more information.</p>

<p>Hensall District Co-op has chosen Resolution once again, this time to develop a new public web front for the Southwestern Ontario agricultural co-operative.  The new site will be clearly organized by department, present content in an easy-to-find and easy-to-read format, and allow HDC staff to edit both text and image content appearing on the site.  Stay tuned for more information.</p>

<p>Resolution Interactive Media is a London, Ontario based digital agency providing web design, web application development, usability testing, and online strategy services. For more information please visit the '<a href="http://www.resolutionim.com/">our story</a>' section of this web site.</p>]]></description>
            <pubDate>Thu, 31 Aug 2006 00:00:00 -0400</pubDate>
            <link>http://www.resolutionim.com/feed/hdc-chooses-resolution</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/hdc-chooses-resolution</guid>
        </item>        <item>
            <title><![CDATA[Resolution 2.0 Coming Soon]]></title>
            <description><![CDATA[<p>Sometimes you just have to be a little selfish.  Our production schedule has been jam packed lately but we've decided to devote some time to the creation and launch of a new Resolution corporate web site.  Check back in early fall for a stunning visual interface, increased interactivity, and the powerful tools that make us the company we are.</p>

<p>Resolution Interactive Media is a London, Ontario based digital agency providing web design, web application development, usability testing, and online strategy services. For more information please visit the '<a href="http://www.resolutionim.com/">our story</a>' section of this web site.</p>]]></description>
            <pubDate>Thu, 03 Aug 2006 00:00:00 -0400</pubDate>
            <link>http://www.resolutionim.com/feed/resolution-2.0-coming-soon</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/resolution-2.0-coming-soon</guid>
        </item>        <item>
            <title><![CDATA[Hay Bulletin Board Launches]]></title>
            <description><![CDATA[<p>Resolution Interactive Media is pleased to announce the addition of an exciting new feature to the Hay Communications web site (<a href="http://www.hay.net/">www.hay.net</a>). The community bulletin board allows local residents to browse classified items for sale as well as easily submit their items for posting on the board.  Administration is made very easy by a custom admin tool that allows Hay to manage all current postings.  This feature increases the interactivity of the Hay web site and provides a value-added service to Hay clients and all local residents.</p>

<p>Resolution Interactive Media is a London, Ontario based digital agency providing web design, web application development, usability testing, and online strategy services. For more information please visit the '<a href="http://www.resolutionim.com/">our story</a>' section of this web site.</p>]]></description>
            <pubDate>Tue, 25 Jul 2006 00:00:00 -0400</pubDate>
            <link>http://www.resolutionim.com/feed/hay-bulletin-board-launches</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/hay-bulletin-board-launches</guid>
        </item>        <item>
            <title><![CDATA[New Grace Transport Site Launches]]></title>
            <description><![CDATA[<p>Resolution Interactive Media Inc. along with Grace Transport of Lucan, Ontario, is pleased to announce the launch of the new Grace Transport web site (<a href="http://www.gracetransport.com/">www.gracetransport.com</a>).  This innovative project features online job postings and applications, a dynamic news tool, and a home page image that dynamically rotates each time the page is loaded.   The fully functional, custom content management system behind the web site allows Grace to manage the content on their website including news articles, job postings, and service descriptions.  A big thanks to Grace Transport for their continued support during the development of this project and for choosing Resolution Interactive Media.</p>

<p>Resolution Interactive Media is a London, Ontario based digital agency providing web design, web application development, usability testing, and online strategy services. For more information please visit the '<a href="http://www.resolutionim.com/">our story</a>' section of this web site.</p>]]></description>
            <pubDate>Wed, 21 Jun 2006 00:00:00 -0400</pubDate>
            <link>http://www.resolutionim.com/feed/new-grace-transport-site-launches</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/new-grace-transport-site-launches</guid>
        </item>        <item>
            <title><![CDATA[New HGL Site Launches]]></title>
            <description><![CDATA[<p>Resolution Interactive Media in conjunction with Hensall Global Logistics (HGL) is pleased to announce the launch of <a href="http://www.hensallglobal.com/">www.hensallglobal.com</a>. The completed project features a completely custom content management system allowing non-technical staff to edit and manage content across the entire site including asset sharing and on-demand RSS feed generation.</p>

<p>Site specific features include custom web tools to allow visitors to convert standard measurements, convert world currencies with live financial data, track time-zones, and lookup database-driven shipping container specifications among many others.<p>

<p>Hensall Global Logistics is a full service international freight forwarding company that provides integrated transportation and logistics solutions to importers and exporters throughout North America and around the world. Hensall Global's new web front is a powerful and dynamic website that will act as a resource point for the logistics industry while attracting and informing potential clients world-wide.  To view the site online, please visit <a href="http://www.hensallglobal.com/">www.hensallglobal.com</a></p>

<p>Resolution Interactive Media is a London, Ontario based digital agency providing web design, web application development, usability testing, and online strategy services. For more information please visit the '<a href="http://www.resolutionim.com/">our story</a>' section of this web site.</p>]]></description>
            <pubDate>Tue, 23 May 2006 00:00:00 -0400</pubDate>
            <link>http://www.resolutionim.com/feed/new-hgl-site-launches</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/new-hgl-site-launches</guid>
        </item>        <item>
            <title><![CDATA[ABCA/MVCA Blooms with Resolution]]></title>
            <description><![CDATA[<p>The Ausable Bayfield and Maitland Valley Conservation Authorities have chosen Resolution to develop an external website and extranet for their Source Protection project.  The combined website/extranet will provide area residents with important Source Protection information while allowing project team members to communicate, share ideas, and manage project information.  Check back often for project updates and a launch announcement.</p>

<p>Resolution Interactive Media is a London, Ontario based digital agency providing web design, web application development, usability testing, and online strategy services. For more information please visit the '<a href="http://www.resolutionim.com/">our story</a>' section of this web site.</p>]]></description>
            <pubDate>Mon, 24 Apr 2006 00:00:00 -0400</pubDate>
            <link>http://www.resolutionim.com/feed/abcamvca-blooms-with-resolution</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/abcamvca-blooms-with-resolution</guid>
        </item>        <item>
            <title><![CDATA[Grace Transport Rides With Resolution]]></title>
            <description><![CDATA[<p>Grace Transport, a Southwestern Ontario short haul trucking company, has chosen Resolution to design and develop its new website.  The  website will include a custom content management system, online employment application form, and custom photography.  These features will be neatly wrapped in a sleek, professional, and easy-to-navigate visual interface.  Check back for more information including a launch date and case study.</p>

<p>Resolution Interactive Media is a London, Ontario based digital agency providing web design, web application development, usability testing, and online strategy services. For more information please visit the '<a href="http://www.resolutionim.com/">our story</a>' section of this web site.</p>]]></description>
            <pubDate>Thu, 23 Mar 2006 00:00:00 -0500</pubDate>
            <link>http://www.resolutionim.com/feed/grace-transport-rides-with-resolution</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/grace-transport-rides-with-resolution</guid>
        </item>        <item>
            <title><![CDATA[Hay Upgrade Launched]]></title>
            <description><![CDATA[<p>Resolution Interactive Media, in conjunction with Hay Communications, is pleased to announce the launch of the new Hay web front (www.hay.net). The completed project features a completely custom content management system allowing non-technical staff to edit and manage content across the entire site including asset sharing and layout control. Site specific features include customized web mail interfaces for Hay's internet customers and easy access to numerous web based account tools. Resolution's developers worked closely with Hay staff to deliver easy content control and a new layout that reflected Hay's new image.</p>

<p>Hay Communications Cooperative Ltd. is a provider of local telephone service, long distance, and Internet services to residents and businesses in Grand Bend, Dashwood, Zurich, and the surrounding communities.</p>

<p>Resolution Interactive Media is a London, Ontario based digital agency providing web design, web application development, usability testing, and online strategy services. For more information please visit the '<a href="http://www.resolutionim.com/">our story</a>' section of this web site.</p>]]></description>
            <pubDate>Mon, 27 Feb 2006 00:00:00 -0500</pubDate>
            <link>http://www.resolutionim.com/feed/hay-upgrade-launched</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/hay-upgrade-launched</guid>
        </item>        <item>
            <title><![CDATA[We've Moved - New Studio]]></title>
            <description><![CDATA[<p>In step with our latest growth, we've just completed a move to our new and larger state of the art studio in downtown London, Ontario.</p>
<p>Our new address is:</p>
<p><strong>Resolution Interactive Media Inc.</strong></p>

<p><del datetime="2011-12-21T11:19-05:00">560 Wellington Street<br>
1st Floor<br>
London, Ontario<br>
N6A 3R4 Canada</del></p>
<p><ins>
303-717 Richmond Street<br>
London, Ontario<br>
N6A 1S2 Canada</ins>
</ins></p>
<p>Don't forget to stop by and say hi!</p>]]></description>
            <pubDate>Tue, 21 Feb 2006 00:00:00 -0500</pubDate>
            <link>http://www.resolutionim.com/feed/weve-moved-new-studio</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/weve-moved-new-studio</guid>
        </item>        <item>
            <title><![CDATA[Kawasaki, Creative Donkeys, and Resolution?]]></title>
            <description><![CDATA[<p>Sounds strange at first but rest assured the end result will be nothing short of spectacular.  Resolution has teamed up with London, Ontario design agency Creative Donkeys to redesign the Kawasaki Canada website (<a href="http://www.kawasaki.ca/">www.kawasaki.ca</a>).  Resolution will use a stunning visual interface provided by Creative Donkeys to develop Flash and HTML versions of the site along with a user friendly, custom content management system to bring it all together.</p>
<p>Stay tuned to resolutionim.com for more information on this project.</p>]]></description>
            <pubDate>Thu, 26 Jan 2006 00:00:00 -0500</pubDate>
            <link>http://www.resolutionim.com/feed/kawasaki-creative-donkeys-and-resolution</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/kawasaki-creative-donkeys-and-resolution</guid>
        </item>        <item>
            <title><![CDATA[CRAM Science Goes Live]]></title>
            <description><![CDATA[<p>Resolution Interactive Media, in conjunction with Amy Cook and Mira Ray, is pleased to announce the official launch of CRAM Science (www.cramscience.ca). The CRAM project presented a unique and challenging opportunity for Resolution and provided our development team with the chance to expand their creative bounds.</p>
<p>The first step in the CRAM project was recognizing the target audience, mainly students age 13-18. This demographic has a very high web usage rate combined with an extremely short attention span meaning they know how to use the web but don't stick around on any site if it doesn't offer an attractive layout and some level of interactivity. Keeping this information in mind, Resolution lead designer Brendan Farr-Gaynor created both a logo and visual layout that speak to the target audience and are influenced by urban elements, fashion, and visual trends. To keep interactivity high, Resolution and the CRAM Science team included a feature called 'Ask Dr.Cram.' Ask Dr.Cram is an area of the website where visitors can submit questions with select questions and answers being featured on the website.  Keeping content fresh is another method to hold the interest of a teen target audience.  The CRAM website features a custom content management system that allows the CRAM team to add new content to the website at any time from any location with a computer, internet connection, and web browser.</p>
<p>To view the site online, please visit <a href="http://www.cramscience.ca/">www.cramscience.ca</a></p>
The first step in the CRAM project was recognizing the target audience, mainly students age 13-18. This demographic has a very high web usage rate combined with an extremely short attention span meaning they know how to use the web but don't stick around on any site if it doesn't offer an attractive layout and some level of interactivity. Keeping this information in mind, Resolution lead designer Brendan Farr-Gaynor created both a logo and visual layout that speak to the target audience and are influenced by urban elements, fashion, and
visual trends. To keep interactivity high, Resolution and the CRAM Science team included a feature called 'Ask Dr.Cram.' Ask Dr.Cram is an area of the website where visitors can submit questions with select questions and answers being featured on the website.  Keeping content fresh is another method to hold the interest of a teen target audience.  The CRAM website features a custom content management system that allows the CRAM team to add new content to the website at any time from any location with a computer, internet connection, and web browser.

To view the site online, please visit <a href="http://www.cramscience.ca">www.cramscience.ca</a>]]></description>
            <pubDate>Sat, 21 Jan 2006 00:00:00 -0500</pubDate>
            <link>http://www.resolutionim.com/feed/cram-science-goes-live</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/cram-science-goes-live</guid>
        </item>        <item>
            <title><![CDATA[Hay Draws The Resolution Straw]]></title>
            <description><![CDATA[<p>Hay Communications Cooperative Ltd., a provider of local telephone service, long distance, and Internet services to residents and businesses in Grand Bend, Dashwood, Zurich, and the surrounding communities, has chosen Resolution to redesign and reorganize their current website.</p>
<p>The Hay website serves as a community web portal and an information source for both existing and potential clients.  Current features such as email account login and online account viewing will be integrated into a professional layout that offers consistency and improved usability.  One of the hurdles present on the current site is the inability Hay staff has to effectively update content. To overcome this, a database-powered content management system will be developed allowing non-technical staff to make updates to the website through a custom administration console.</p>
</p>For more information on Resolution Interactive Media, our philosophy, or our services please feel free to <a href="http://www.resolutionim.com/#contact">contact us</a>.</p>]]></description>
            <pubDate>Wed, 02 Nov 2005 00:00:00 -0500</pubDate>
            <link>http://www.resolutionim.com/feed/hay-draws-the-resolution-straw</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/hay-draws-the-resolution-straw</guid>
        </item>        <item>
            <title><![CDATA[Resolution To Develop Edward Fuels Intranet]]></title>
            <description><![CDATA[<p>Edward Fuels Ltd, a long-standing client of Resolution Interactive Media, has hired the firm to develop a company wide intranet solution.</p>
<p>By focusing on the current and future business goals of Edward Fuels, Resolution has outlined a project that will allow our client to create a secure, manageable digital workflow system within its own walls.  This intranet system will facilitate knowledge flow and improve collaboration between employees by offering such features as an in/out board, events calendar, corporate directory, information resource, and news posting tool.  For more information on this or any other Resolution news item please feel free to contact us.</p>]]></description>
            <pubDate>Tue, 04 Oct 2005 00:00:00 -0400</pubDate>
            <link>http://www.resolutionim.com/feed/resolution-to-develop-edward-fuels-intranet</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/resolution-to-develop-edward-fuels-intranet</guid>
        </item>        <item>
            <title><![CDATA[Online Science Mag Teams With Resolution]]></title>
            <description><![CDATA[<p>CRAM Science, a new and innovative online science magazine targeted at teens, has chosen Resolution Interactive Media to develop both a corporate identity and a full-featured website.</p>
<p>All pieces of this project will be designed with the target demographic in mind. Acquiring and retaining the interest of teens is paramount to the success of this project and will be achieved through an attractive, urban visual interface and a series of interactive web features.  Resolution will build a dynamic framework for the inclusion of feature-rich content such as Ask Dr. Cram, Everyday Science, Career Corner, and a plethora of fun and innovative science related material.  For more information on this or any other Resolution news item please feel free to contact us.</p>]]></description>
            <pubDate>Tue, 04 Oct 2005 00:00:00 -0400</pubDate>
            <link>http://www.resolutionim.com/feed/online-science-mag-teams-with-resolution</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/online-science-mag-teams-with-resolution</guid>
        </item>        <item>
            <title><![CDATA[Global Partners Select Resolution]]></title>
            <description><![CDATA[<p>An international shipping cooperative consisting of Hensall District Co-Op, Hensall Global Logistics, and Premier Foods UK has selected Resolution Interactive Media to develop a container management extranet.  This system will allow the group to track trans-Atlantic commodity shipments using a series of critical checkpoints and will be up-datable from anywhere in the logistics chain.  In usual Resolution fashion this project will be very user friendly, accessible, and focused on the goals of our client.  Stay tuned for more information and a complete case study.</p>]]></description>
            <pubDate>Sat, 27 Aug 2005 00:00:00 -0400</pubDate>
            <link>http://www.resolutionim.com/feed/global-partners-select-resolution</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/global-partners-select-resolution</guid>
        </item>        <item>
            <title><![CDATA[HGL Chooses Resolution]]></title>
            <description><![CDATA[<p>Resolution Interactive Media is pleased to announce the addition of Hensall Global Logistics to its growing client roster.</p>
<p>Hensall Global Logistics is a full service international freight forwarding company that provides integrated transportation and logistics solutions to importers and exporters throughout North America and around the world.   Resolution and Hensall Global are teaming up to create a powerful and dynamic website that will act as a resource point for the logistics industry while attracting and informing potential clients world-wide.</p>
<p>Check back soon for a detailed case study and link to the finished project.</p>]]></description>
            <pubDate>Wed, 20 Jul 2005 00:00:00 -0400</pubDate>
            <link>http://www.resolutionim.com/feed/hgl-chooses-resolution</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/hgl-chooses-resolution</guid>
        </item>        <item>
            <title><![CDATA[Resolution In The Classroom]]></title>
            <description><![CDATA[<p>Jonathan Kochis of Resolution Interactive Media has accepted a part-time teaching position at London, Ontario's Fanshawe College.  The position involves instructing two web related courses during the fall 2005 semester.  The first course, Macromedia Dreamweaver - Level 1, is for students who are new to web design and who want to use Dreamweaver MX to build attractive and accessible websites.  Jonathan's experience in planning, creating, and editing web content will add to the course by helping students learn through real-world experiences.  The second course, Internet Research and Web Page Design, teaches students about email, FTP, internet research, and web page design.  This course is part of the School of Business and prepares students for a wide range of communication applications using new technology.  More information on these courses and others offered by Fanshawe College can  be found on the  <a href="http://www.fanshawec.ca/"> school's website</a>.</p>]]></description>
            <pubDate>Mon, 11 Jul 2005 00:00:00 -0400</pubDate>
            <link>http://www.resolutionim.com/feed/resolution-in-the-classroom</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/resolution-in-the-classroom</guid>
        </item>        <item>
            <title><![CDATA[Edward Fuels Adds New Tools]]></title>
            <description><![CDATA[<p>2005 brings new web tools to Edward Fuels already full-featured public web front originally developed by Resolution. New upgrades include online Air Miles&trade; rewards, customer feedback collection, instant survey reports, and aviation account registration all unique to Edward Fuels.</p>]]></description>
            <pubDate>Thu, 23 Dec 2004 00:00:00 -0500</pubDate>
            <link>http://www.resolutionim.com/feed/edward-fuels-adds-new-tools</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/edward-fuels-adds-new-tools</guid>
        </item>        <item>
            <title><![CDATA[Matheson Blvd Chooses Resolution]]></title>
            <description><![CDATA[<p>Matheson Boulevard, a premiere Canadian veterinary service group has contracted Resolution to develop its new web front. Project details include a full content management system, user oriented scheduling calendars, digital referral forms, and preliminary extranet work.</p>]]></description>
            <pubDate>Tue, 21 Dec 2004 00:00:00 -0500</pubDate>
            <link>http://www.resolutionim.com/feed/matheson-blvd-chooses-resolution</link>
            <guid isPermaLink="true">http://www.resolutionim.com/feed/matheson-blvd-chooses-resolution</guid>
        </item>
    </channel>
</rss>