<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Will Egan's Web Page</title>
	
	<link>http://willegan.com</link>
	<description>Marketing, Politics and Media!</description>
	<pubDate>Sat, 04 Sep 2010 03:32:07 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/willegan" /><feedburner:info uri="willegan" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId>willegan</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>Lesson 1: Cascading Syle Sheets (CSS)</title>
		<link>http://feedproxy.google.com/~r/willegan/~3/1BEyCMXJfFM/</link>
		<comments>http://willegan.com/2010/09/04/lesson1-cascading-style-sheets-css/#comments</comments>
		<pubDate>Sat, 04 Sep 2010 01:57:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Featured]]></category>

		<category><![CDATA[Teaching Myself Web-Design]]></category>

		<category><![CDATA[Builiding a website the proper way]]></category>

		<category><![CDATA[CSS]]></category>

		<category><![CDATA[declarations]]></category>

		<category><![CDATA[elements]]></category>

		<category><![CDATA[properties]]></category>

		<category><![CDATA[Selectors]]></category>

		<category><![CDATA[values]]></category>

		<guid isPermaLink="false">http://willegan.com/?p=469</guid>
		<description><![CDATA[Today I am researching basic principles of writing Cascading Style Sheets or as it's referred to, a websites CSS. The beauty of a generic website style sheet is that the styles you outline can be applied easily across all HTML pages on a website, thus reducing potential workloads in re-writing individual styles for each page on a domain. I have begun my search for knowledge at FriendlyBit with his beginners web design.]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwillegan.com%2F2010%2F09%2F04%2Flesson1-cascading-style-sheets-css%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwillegan.com%2F2010%2F09%2F04%2Flesson1-cascading-style-sheets-css%2F" height="61" width="51" /></a></div><h1>Cascading Style Sheets</h1>
<p>Today I am researching basic principles of writing <strong>Cascading Style Sheets</strong> or as it&#8217;s referred to, a websites CSS. The beauty of a generic website style sheet is that the styles you outline can be applied easily across all HTML pages on a website, thus reducing potential workloads in re-writing individual styles for each page on a domain. I have begun my search for knowledge at FriendlyBit with his <a title="Begginers Guide to CSS" rel="nofollow" href="http://friendlybit.com/" target="_blank">beginners guide to CSS</a>.</p>
<h2>Learnings:</h2>
<p>Before you create your CSS sheet you need to reference it in the HTML page you want it&#8217;s styles to be implemented in. This is a crucial process and can be easily done by adding this line in the header (&lt;head&gt;&lt;/head&gt;)of the HTML page:</p>
<pre style="text-align: center;"><code>&lt;link rel="stylesheet" href="style.css" type="text/css"&gt;
</code></pre>
<p>This line should be added inside the header of every page you wish to apply your styles. The next step is to open up a plain text document or Dreamweaver file to start writing your CSS. The best way to learn is to do. I am going to be using Dreamweaver.</p>
<p>Emil Stenstrom, author of FriendlyBit, states that there are many selectors, however today we will address <strong>3 types of &#8220;selectors&#8221; in a CSS file</strong>.</p>
<ol>
<li>Element</li>
<li>Class</li>
<li>ID</li>
</ol>
<h3>An Element</h3>
<p>An example of an element is &lt;h1&gt; or &lt;p&gt;, it is a HTML tag sitting on the page. By including this in the CSS sheet you are able to control exactly how this element is displayed on all pages of your website. The styles you add into this section of the CSS will effect all elements with this tag across the HTML documents of your website. Let&#8217;s give it a go:</p>
<table style="height: 94px; text-align: left;" border="0" width="500" align="center">
<tbody>
<tr>
<td>/* CSS Document */<br />
h1 {<br />
Parameter1: value1<br />
Parameter2: value2<br />
Parameter3: value3<br />
}</td>
<td style="text-align:center">Real Parameters &gt;&gt;</td>
<td>h1{<br />
font-size: 16px<br />
font-weight:bold<br />
color:#000000<br />
}</td>
</tr>
</tbody>
</table>
<p>A full list of CSS Parameters and how to implement them is available <a href="http://www.blooberry.com/indexdot/css/propindex/all.htm" target="_blank">here</a>. Remember, the styles associated with each tag in the CSS sheet will apply the style to all tags.</p>
<h3>A Class</h3>
<p>Writing a &#8220;class&#8221; into your style sheet is also simple. The same principles apply, if you include a class attribute within a tag, the information within that tag will be affected by all styles written in the class selector. It is is quite simple to introduce a &#8220;class&#8221; into a section of a web page, but why would you need to and what could you use it for? Remember, the whole purpose of creating a style sheet is to create consistency throughout a website. A class attribute could be used for the comments section of a blog &lt;div class=&#8221;blog.comments&#8221;&gt;. It could be used for alerts on a website such as warnings and messages &lt;div class=&#8221;alerts&#8221;&gt;. Or specific to an element, such as a certain set of links being a different color &lt;em class=&#8221;outbound.links&#8221;&gt;. You will get the jist from those last three examples of <strong>how to implement class attributes onto a HTML page</strong>, however I have restated them below:</p>
<pre style="text-align: center;"><code>&lt;div class"name.of.class"&gt;
&lt;em class"outbound.links&gt;

The &lt;em&gt; selector tag allows you to apply a class or special element (em = element) with a unique style.
<strong>For example:</strong> &lt;h1&gt;This is the &lt;em class"outbound.links"&gt;best website&lt;/em&gt;in Australia!&lt;/h1&gt;
</code></pre>
<p>Let&#8217;s now look at how to write the class selector into the style sheet. We will follow the same formula as written above and see how that effects the example given above.</p>
<table style="height: 80px;" border="0" width="448" align="center">
<tbody>
<tr>
<td>/* CSS Document */<br />
.outbound.links {<br />
Parameter1: value1<br />
Parameter2: value2<br />
}</td>
<td>Real Parameters &gt;&gt;</td>
<td>.outbound.links {<br />
text-style: italic<br />
color: ##FF0000<br />
}</td>
</tr>
</tbody>
</table>
<p>This means that the HTML  <code>&lt;h1&gt;This is the &lt;em class"outbound.links"&gt;best website&lt;/em&gt;in Australia!&lt;/h1&gt;</code> would look something like this: <strong>This is the <span style="color: #ff0000;"><em>best website</em></span> in Australia!</strong></p>
<h3>A Class</h3>
<p>The final selector we will cover in lesson one is a class. An ID works in much the same way as a class. However, an ID is used to define a certain section of the page and in theory a web page can not have two of the same sections. For example, many areas of a webpage could require the &#8220;.outbound.links&#8221; class. But, an Id which is used to define a specific element can only exist once on the page, like &#8220;sidebars&#8221;, &#8220;headers&#8221; and &#8220;footers&#8221;. You wouldn&#8217;t have two headers, just like you wouldn&#8217;t build two separate roofs on top of a house. An ID can contain various elements which directly affect that specific section of a website. For example:</p>
<table style="height: 80px;" border="0" width="448" align="center">
<tbody>
<tr>
<td>/* CSS Document */<br />
#header {<br />
Parameter1: value1<br />
Parameter2: value2<br />
}</td>
<td>Real Parameters &gt;&gt;</td>
<td>#header {<br />
padding-top: 10px<br />
bg-color: ##FF0000<br />
}</td>
</tr>
</tbody>
</table>
<p>Finally, you will have noticed I used live examples above. For the purpose of your records, and mine, I have outlined the styles being applied in the terms they are referred to.</p>
<p style="text-align: center;">Selector1{<br />
(declaration1)Property:value<br />
(declaration2)property:value<br />
}</p>
<p style="text-align: left;">Get the idea? I will working on developing a basic Style sheet in the next few days and then start on Lesson 2.</p>

<p><a href="http://feedads.g.doubleclick.net/~a/wbY6-we4TM0r_9stGHw125d38ao/0/da"><img src="http://feedads.g.doubleclick.net/~a/wbY6-we4TM0r_9stGHw125d38ao/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/wbY6-we4TM0r_9stGHw125d38ao/1/da"><img src="http://feedads.g.doubleclick.net/~a/wbY6-we4TM0r_9stGHw125d38ao/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/willegan/~4/1BEyCMXJfFM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://willegan.com/2010/09/04/lesson1-cascading-style-sheets-css/feed/</wfw:commentRss>
		<feedburner:origLink>http://willegan.com/2010/09/04/lesson1-cascading-style-sheets-css/</feedburner:origLink></item>
		<item>
		<title>CPD Calculator</title>
		<link>http://feedproxy.google.com/~r/willegan/~3/WMXep3iPv_Y/</link>
		<comments>http://willegan.com/2010/06/30/cpd-calculator/#comments</comments>
		<pubDate>Wed, 30 Jun 2010 06:34:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Featured]]></category>

		<category><![CDATA[My Great Ideas]]></category>

		<category><![CDATA[Political Commentary]]></category>

		<category><![CDATA[Responses to Articles]]></category>

		<guid isPermaLink="false">http://willegan.com/?p=461</guid>
		<description><![CDATA[I will put more in the post later as I launch part two of my latest project.
But for now, especially if you work in health care, you may like to use our new CPD Calculator to work out how many CPD hours you need to earn from July 1st onward, 2010.
I will update later tonight!
Will


My [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwillegan.com%2F2010%2F06%2F30%2Fcpd-calculator%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwillegan.com%2F2010%2F06%2F30%2Fcpd-calculator%2F" height="61" width="51" /></a></div><p>I will put more in the post later as I launch part two of my latest project.</p>
<p>But for now, especially if you work in health care, you may like to use our new <a title="Online CPD Calculator" href="http://www.ausmed.com.au/continued-professional-development/cpd-calculator.html">CPD Calculator</a> to work out how many CPD hours you need to earn from July 1st onward, 2010.</p>
<p>I will update later tonight!</p>
<p>Will</p>
<p><!-- CPD Organiser Badge START -->
<div style="font-family: Tahoma,Geneva,sans-serif; background: url(http://www.ausmedonline.com/components/com_cpdorganiser/assets/images/cpd_side_bg.jpg) repeat scroll 0pt 0pt transparent; position: relative; width: 120px; padding-top: 10px; height: 190px;" id="cpdo_badge_wrap">
<div style="color: rgb(255, 255, 255); font-size: 14px; font-weight:bold; text-align: center;" id="cpdo_name">My CPD Hours</div>
<div style="background: url(http://www.ausmedonline.com/components/com_cpdorganiser/assets/images/badge_m.png) repeat scroll 0pt 0pt transparent; height: 109px; margin-left: 2px; margin-top: 10px; margin-bottom: 10px; position: relative; text-align: center; width: 116px;" id="cpdo_badge">
<div style="color: rgb(255, 255, 255); font-size: 18px; padding-top: 38px; text-align: center;" id="cpdo_hours">  <script language="javascript" src="http://ausmeddc.appspot.com/restapi/badge?planId=82001"></script></div>
</p></div>
<div style="font-style: italic; font-size: 20px; text-align: center;" id="cpdo_ausmed">
<div><a href="http://www.ausmedonline.com/CPD-Education/online-organiser.html" target="_new" style="font-size: 12px; color: rgb(190, 169, 155);">Free CPD Organiser</a></div>
<div> <a href="http://www.ausmedonline.com/CPD-Education/free-cpd-online.html?utm_source=embed&#038;utm_medium=badge&#038;utm_campaign=cpdo" target="_new" style="font-size: 11px; color: rgb(153, 153, 153);">Online Nursing Education</a></div>
</p></div>
</p></div>
<p> <!-- CPD Organiser Badge END --></p>

<p><a href="http://feedads.g.doubleclick.net/~a/oCAH30GYlyoKf29h5fv96upTlNo/0/da"><img src="http://feedads.g.doubleclick.net/~a/oCAH30GYlyoKf29h5fv96upTlNo/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/oCAH30GYlyoKf29h5fv96upTlNo/1/da"><img src="http://feedads.g.doubleclick.net/~a/oCAH30GYlyoKf29h5fv96upTlNo/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/willegan/~4/WMXep3iPv_Y" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://willegan.com/2010/06/30/cpd-calculator/feed/</wfw:commentRss>
		<feedburner:origLink>http://willegan.com/2010/06/30/cpd-calculator/</feedburner:origLink></item>
		<item>
		<title>Frankfurt Book Fair</title>
		<link>http://feedproxy.google.com/~r/willegan/~3/VILPxaOGH8E/</link>
		<comments>http://willegan.com/2009/11/18/frankfurt-book-fair-tools-of-change/#comments</comments>
		<pubDate>Tue, 17 Nov 2009 21:45:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Marketing Talk]]></category>

		<category><![CDATA[Publishing]]></category>

		<category><![CDATA[Featured]]></category>

		<category><![CDATA[Frankfurt Book Fair]]></category>

		<category><![CDATA[TOC Frankfurt]]></category>

		<category><![CDATA[Tools of Change Frankfurt.]]></category>

		<guid isPermaLink="false">http://willegan.com/?p=446</guid>
		<description><![CDATA[A brief post about the tools of change conference which was part of my learning experience at the 2009 Frankfurt Book Fair. The publishing industry is changing and for some, it's getting scary!]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwillegan.com%2F2009%2F11%2F18%2Ffrankfurt-book-fair-tools-of-change%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwillegan.com%2F2009%2F11%2F18%2Ffrankfurt-book-fair-tools-of-change%2F" height="61" width="51" /></a></div><p>I don&#8217;t think I ever got around to posting whilst I was over seas recently. I had one of the busiest trips of my life so far, made some big deals and met some amazing people!</p>
<p>The Frankfurt Book Fair is one of the worlds largest gathering of publishers, rights sellers and authors from across the world. It is also a place where some of the &#8216;big guns&#8217; in the industry meet and talk about where the future is going. Some talk about it as though they aren&#8217;t part of it, others as though they are creating the future and some like it&#8217;s already been on gone.</p>
<p>Nevertheless publishing in my opinion is quickly going to change and many people will be left behind.</p>
<p><object width="500" height="280" data="http://www.tocfrankfurt.com/Downloads/player-viral.swf" type="application/x-shockwave-flash"><param name="flashvars" value="file=http%3A%2F%2Fwww.tocfrankfurt.com%2FDownloads%2FVideos%2FTOC-Best_Of.flv&amp;dock=false&amp;level=0&amp;title=Best%20of%20TOC%20Frankfurt%202009&amp;bandwidth=3276&amp;plugins=viral-2d" /><param name="src" value="http://www.tocfrankfurt.com/Downloads/player-viral.swf" /><param name="allowfullscreen" value="true" /></object></p>
<p>The video above was made by O&#8217;Reilly media for the Tools of Change conference at the FBF 09. The conference was great! I didn&#8217;t learn as much as I would have liked but definately had some of my ideas and believes confirmed which is also a positive thing!</p>
<p>I&#8217;m planning on writing a decent post on the publishing industry in the next few days.</p>

<p><a href="http://feedads.g.doubleclick.net/~a/ObkMLiElJc8LCWU0lUZk7jL1qXs/0/da"><img src="http://feedads.g.doubleclick.net/~a/ObkMLiElJc8LCWU0lUZk7jL1qXs/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/ObkMLiElJc8LCWU0lUZk7jL1qXs/1/da"><img src="http://feedads.g.doubleclick.net/~a/ObkMLiElJc8LCWU0lUZk7jL1qXs/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/willegan/~4/VILPxaOGH8E" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://willegan.com/2009/11/18/frankfurt-book-fair-tools-of-change/feed/</wfw:commentRss>
		<feedburner:origLink>http://willegan.com/2009/11/18/frankfurt-book-fair-tools-of-change/</feedburner:origLink></item>
		<item>
		<title>Reviewed: 5 Seeds marketing campaign.</title>
		<link>http://feedproxy.google.com/~r/willegan/~3/LCMqIryfHk4/</link>
		<comments>http://willegan.com/2009/11/09/a-review-of-the-socially-enriched-5-seeds-marketing-campaign/#comments</comments>
		<pubDate>Mon, 09 Nov 2009 08:39:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Featured]]></category>

		<category><![CDATA[Marketing Talk]]></category>

		<category><![CDATA[5Seeds Marketing Campaign]]></category>

		<category><![CDATA[audio and interactive content into products]]></category>

		<category><![CDATA[Geny y Marketing Podcast]]></category>

		<category><![CDATA[Marketing over coffee]]></category>

		<category><![CDATA[Mumbrella]]></category>

		<category><![CDATA[Tying social technologies]]></category>

		<category><![CDATA[video]]></category>

		<category><![CDATA[Will Egan]]></category>

		<guid isPermaLink="false">http://willegan.com/?p=429</guid>
		<description><![CDATA[I recently listened to an interview on one of my favorite marketing Podcasts which was interviewing Tim Street, creator of French Maid.tv. Basically, they were talking about the idea of interactive video stories which told consumers about the product through a related journey. Ultimately, suggesting that tying this into social technologies is one of the [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwillegan.com%2F2009%2F11%2F09%2Fa-review-of-the-socially-enriched-5-seeds-marketing-campaign%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwillegan.com%2F2009%2F11%2F09%2Fa-review-of-the-socially-enriched-5-seeds-marketing-campaign%2F" height="61" width="51" /></a></div><p>I recently listened to an interview on one of my <a href="http://www.marketingovercoffee.com/first-time-visitors/" target="_blank">favorite marketing Podcasts</a> which was interviewing Tim Street, creator of French Maid.tv. Basically, they were talking about the idea of interactive video stories which told consumers about the product through a related journey. Ultimately, suggesting that tying this into social technologies is one of the biggest hurdles for companies in the future.</p>
<p>I saw this campaign when it was first launched thanks to <a href="http://mumbrella.com.au/birds-v-humans-in-ambitious-tooheys-5-seeds-cider-launch-10318#comment-20219" target="_blank">Mumbrella</a> and the <a href="http://genymarketing.blogspot.com/" target="_blank">Gen Y Marketing Podcast</a> (another of my faves) but didn&#8217;t realise the significance of what was being done until I went right through the journey whilst I procrastinated for a University exam.</p>
<p style="text-align: center;"><a href="http://willegan.com/2009/11/09/a-review-of-the-socially-enriched-5-seeds-marketing-campaign/">So, I thought I&#8217;d vlog about the whole thing.</a><br />
<object width="425" height="344" data="http://www.youtube.com/v/meaKm5bfVTc&amp;hl=en&amp;fs=1&amp;" type="application/x-shockwave-flash"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/meaKm5bfVTc&amp;hl=en&amp;fs=1&amp;" /><param name="allowfullscreen" value="true" /></object></p>
<p style="text-align: left;"><strong>Take away points:</strong></p>
<ol style="text-align: left;">
<li>Very successful integration of YouTube, Twitter &amp; Facebook. User easily move across these three platforms.</li>
<li>Interactive video content was extremely innovative and user retention was around 80% of the initial video views.</li>
<li>I bought some after watching this campaign!</li>
</ol>
<p style="text-align: left;">Hope you enjoyed&#8230;</p>
<p style="text-align: left;"><a href="http://willegan.com/2009/11/09/a-review-of-the-socially-enriched-5-seeds-marketing-campaign/"><img class="size-full wp-image-432    alignleft" title="5_seeds_logo" src="http://willegan.com/wp-content/uploads/5_seeds_logo.jpg" alt="5_seeds_logo" width="139" height="153" /></a></p>
<p><a href="http://feedburner.google.com/fb/a/mailverify?uri=willegan" target="_blank">Subscribe to my blog!</a> |     <a href="http://twitter.com/willegan" target="_blank">Follow me on Twitter!</a></p>

<p><a href="http://feedads.g.doubleclick.net/~a/Q1gN-x_-nIwkuLBVBHHL0lNZ1Sc/0/da"><img src="http://feedads.g.doubleclick.net/~a/Q1gN-x_-nIwkuLBVBHHL0lNZ1Sc/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/Q1gN-x_-nIwkuLBVBHHL0lNZ1Sc/1/da"><img src="http://feedads.g.doubleclick.net/~a/Q1gN-x_-nIwkuLBVBHHL0lNZ1Sc/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/willegan/~4/LCMqIryfHk4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://willegan.com/2009/11/09/a-review-of-the-socially-enriched-5-seeds-marketing-campaign/feed/</wfw:commentRss>
		<feedburner:origLink>http://willegan.com/2009/11/09/a-review-of-the-socially-enriched-5-seeds-marketing-campaign/</feedburner:origLink></item>
		<item>
		<title>Is this the official end of print?</title>
		<link>http://feedproxy.google.com/~r/willegan/~3/ZQuKLBqPIW4/</link>
		<comments>http://willegan.com/2009/11/06/is-this-the-official-end-of-print/#comments</comments>
		<pubDate>Fri, 06 Nov 2009 05:04:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Marketing Talk]]></category>

		<category><![CDATA[End of paper]]></category>

		<guid isPermaLink="false">http://willegan.com/?p=423</guid>
		<description><![CDATA[ A pictographical look at how the paper industry is on it's knees and print media is dying in Australia. ]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwillegan.com%2F2009%2F11%2F06%2Fis-this-the-official-end-of-print%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwillegan.com%2F2009%2F11%2F06%2Fis-this-the-official-end-of-print%2F" height="61" width="51" /></a></div><p>You have probably noticed how ebay has stolen a  large portion of the second hand trading market, sites have been established where you can <a href="http://rentoid.com" target="_blank">rent goods online</a> and those old pieces of paper that you buy for the cat litter is still being printed.</p>
<p>Well, not any more&#8230;</p>
<p><a href="http://willegan.com/wp-content/uploads/tradin_post_dead.jpg"><img class="aligncenter size-full wp-image-424" title="tradin_post_dead" src="http://willegan.com/wp-content/uploads/tradin_post_dead.jpg" alt="tradin_post_dead" width="325" height="433" /></a></p>
<p>I just bought my first ebook reader and found a site that sells uni textbooks, so that&#8217;s the end of my bags breaking under the massive weight of uni books next semester!</p>
<p>Keep on following!</p>
<p><em>Finally</em>, my <a href="http://willegan.com/Mo-Vember/">moustache is coming along just nicely</a>, check my day by day pics out here.</p>

<p><a href="http://feedads.g.doubleclick.net/~a/OJkhczHgOwTIS_VMVo82ZvaZmrI/0/da"><img src="http://feedads.g.doubleclick.net/~a/OJkhczHgOwTIS_VMVo82ZvaZmrI/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/OJkhczHgOwTIS_VMVo82ZvaZmrI/1/da"><img src="http://feedads.g.doubleclick.net/~a/OJkhczHgOwTIS_VMVo82ZvaZmrI/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/willegan/~4/ZQuKLBqPIW4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://willegan.com/2009/11/06/is-this-the-official-end-of-print/feed/</wfw:commentRss>
		<feedburner:origLink>http://willegan.com/2009/11/06/is-this-the-official-end-of-print/</feedburner:origLink></item>
		<item>
		<title>Help Me Grow My Mo</title>
		<link>http://feedproxy.google.com/~r/willegan/~3/hRssdtvezgk/</link>
		<comments>http://willegan.com/2009/11/02/help-me-grow-my-mo/#comments</comments>
		<pubDate>Mon, 02 Nov 2009 08:11:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Thing I do in my life]]></category>

		<category><![CDATA[Featured]]></category>

		<category><![CDATA[Movember]]></category>

		<guid isPermaLink="false">http://willegan.com/?p=410</guid>
		<description><![CDATA[I&#8217;m growing a Mo for Movember and need your help.
I&#8217;ve had my first donation today from Zac Martin of $20.00 and am aiming at raising $700. So I NEED YOUR HELP!
Click here to read more about my mo, why I&#8217;m growing it, and see some pics of my mo in action!
Click here now!
Looking forward to [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwillegan.com%2F2009%2F11%2F02%2Fhelp-me-grow-my-mo%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwillegan.com%2F2009%2F11%2F02%2Fhelp-me-grow-my-mo%2F" height="61" width="51" /></a></div><h3>I&#8217;m growing a Mo for Movember and need your help.</h3>
<p>I&#8217;ve had my first donation today from <a href="http://www.pigsdontfly.com/">Zac Martin</a> of $20.00 and am aiming at raising $700. So I NEED YOUR HELP!</p>
<p>Click here to read more about my mo, why I&#8217;m growing it, and see some pics of my mo in action!</p>
<h2 style="text-align: center;"><a href="http://willegan.com/Mo-Vember/"><strong>Click here now!</strong></a></h2>
<p>Looking forward to your donations!!</p>
<p>Will</p>

<p><a href="http://feedads.g.doubleclick.net/~a/etK_S23WcHomIWxE7K8AhHxhYvg/0/da"><img src="http://feedads.g.doubleclick.net/~a/etK_S23WcHomIWxE7K8AhHxhYvg/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/etK_S23WcHomIWxE7K8AhHxhYvg/1/da"><img src="http://feedads.g.doubleclick.net/~a/etK_S23WcHomIWxE7K8AhHxhYvg/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/willegan/~4/hRssdtvezgk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://willegan.com/2009/11/02/help-me-grow-my-mo/feed/</wfw:commentRss>
		<feedburner:origLink>http://willegan.com/2009/11/02/help-me-grow-my-mo/</feedburner:origLink></item>
		<item>
		<title>The Asylum Seeker Issue</title>
		<link>http://feedproxy.google.com/~r/willegan/~3/Sa-kVuDTxRI/</link>
		<comments>http://willegan.com/2009/10/29/the-asylum-seeker-issue/#comments</comments>
		<pubDate>Thu, 29 Oct 2009 06:41:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Newshit]]></category>

		<category><![CDATA[Political Commentary]]></category>

		<category><![CDATA[Asylum seekers in Australia]]></category>

		<category><![CDATA[I eat media for breakfast]]></category>

		<category><![CDATA[Kevin Rudd on Australian Asylum Seekers]]></category>

		<guid isPermaLink="false">http://willegan.com/?p=388</guid>
		<description><![CDATA[The ongoing battle between the Australian Government, the asylum seeking refugees and the Indonesian foreign ministry has sparked me to have my say. Watch the video production I have created under the 'I Eat Media for Breakfast' brand. Watch it now!]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwillegan.com%2F2009%2F10%2F29%2Fthe-asylum-seeker-issue%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwillegan.com%2F2009%2F10%2F29%2Fthe-asylum-seeker-issue%2F" height="61" width="51" /></a></div><h3 style="text-align: left;">An &#8216;I Eat Media for Breakfast Production&#8217;.</h3>
<p style="text-align: left;">The ongoing battle between the Australian Government, the asylum seeking refugees and the Indonesian foreign ministry has sparked me to have my say.</p>
<p style="text-align: center;"><a href="http://willegan.com/2009/10/29/the-asylum-seeker-issue/"><strong>Have a watch&#8230;</strong></a></p>
<p style="text-align: center;"><object width="560" height="340" data="http://www.youtube.com/v/mmvlyLI6ALY&amp;hl=en&amp;fs=1&amp;" type="application/x-shockwave-flash"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/mmvlyLI6ALY&amp;hl=en&amp;fs=1&amp;" /><param name="allowfullscreen" value="true" /></object></p>
<p style="text-align: center;">
<p style="text-align: left;"><strong>My stance:</strong> Australia shouldn&#8217;t just open it&#8217;s doors, nor should we not allow anyone in. We need to develop a policy that deals with this problem in a structured way, rather than the boat by boat basis which is currently being used. It&#8217;s inevitable that asylum seeker numbers will increase as the world population grows and Australia remains spacious. Furthermore, although we need to protect our society and cultural values, we shouldn&#8217;t be scared of new ones. For many of us, we were part of the new cultures being brought to Australia 10, 20, 30 or 50 years ago, and we have been crucial in shaping Australia into the society it is today.</p>
<p style="text-align: left;">
<p style="text-align: left;">I hope you enjoyed and feel free to add some scrambled eggs to the breaky (your opinions that is).</p>
<p style="text-align: left;">Will</p>
<p><a href="http://willegan.com/feed/">Subscribe to this blog</a> |   Follow will on <a href="http://twitter.com/willegan">Twitter</a> - <a href="http://www.youtube.com/user/oemwnoxmwfkxw">Youtube</a><br />
<br /></br><br />
<span style="color: #888888;">Image Credits<br />
</span></p>
<p style="text-align: justify;"><span style="color: #888888;"><a href="http://baconhaikus.files.wordpress.com/2009/01/dietcokewithbacon.jpg">Bacon</a> - <a href="http://www.customs.gov.au/webdata/resources/files/oceanic-viking.jpg">Oceanic Viking</a> - <a href="http://upload.wikimedia.org/wikipedia/commons/7/78/Australian_Coat_of_Arms.png">Coat of Arms</a> - <a href="http://www.abs.gov.au/ausstats/abs@.nsf/dc057c1016e548b4ca256c470025ff88/1647509ef7e25faaca2568a900154b63!OpenDocument">Population Clock</a> - <a href="http://img.groundspeak.com/waymarking/display/f3de1eb0-f702-4f93-9c79-a1635eb4e067.jpg">No Vacancy sign</a> - <a href="http://volcano.oregonstate.edu/volcanoes/aussie.jpg">South East Asia</a> - <a href="http://www.abc.net.au/reslib/200702/r128686_422841.jpg">ASX image</a> - <a href="http://www.abc.net.au/reslib/200805/r250849_1030772.jpg">A fair go</a> - <a href="http://www.sail-world.com/photos/Alt_Australian%20supporters.jpg">Australians standing together</a> - <a href="http://werichanel.files.wordpress.com/2009/10/australian-government-department-of-defence-air-force.jpg">Australian defence plane</a> - <a href="http://s3.amazonaws.com/readers/2009/03/25/2004tsunami_1.jpg">Boxing day tsunami</a> - <a href="http://static.stuff.co.nz/1188993600/645/57645.jpg">Boxing day Tsunami 2</a> - <a href="http://kickdefella.files.wordpress.com/2007/12/tsunami-decembre.jpg">Boxing day Tsunami 3</a> - <a href="http://www.inthenews.co.uk/photo/boxing-day-tsunami-$7005283$300.jpg">Boxing day Tsunami 4</a></span></p>

<p><a href="http://feedads.g.doubleclick.net/~a/SF5-DjE6OW8DoB70pU4w9xDNKK8/0/da"><img src="http://feedads.g.doubleclick.net/~a/SF5-DjE6OW8DoB70pU4w9xDNKK8/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/SF5-DjE6OW8DoB70pU4w9xDNKK8/1/da"><img src="http://feedads.g.doubleclick.net/~a/SF5-DjE6OW8DoB70pU4w9xDNKK8/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/willegan/~4/Sa-kVuDTxRI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://willegan.com/2009/10/29/the-asylum-seeker-issue/feed/</wfw:commentRss>
		<feedburner:origLink>http://willegan.com/2009/10/29/the-asylum-seeker-issue/</feedburner:origLink></item>
		<item>
		<title>Social Media and SEO</title>
		<link>http://feedproxy.google.com/~r/willegan/~3/EWwV_5Zx4Kc/</link>
		<comments>http://willegan.com/2009/10/23/social-media-and-seo/#comments</comments>
		<pubDate>Thu, 22 Oct 2009 16:51:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Blog]]></category>

		<category><![CDATA[Marketing Talk]]></category>

		<category><![CDATA[Content is King but so is Context]]></category>

		<category><![CDATA[google]]></category>

		<category><![CDATA[WMS]]></category>

		<category><![CDATA[YouTube]]></category>

		<guid isPermaLink="false">http://willegan.com/?p=374</guid>
		<description><![CDATA[The second largest search engine other than Google is Youtube, over 10 billion videos were viewed in the U.S. in August. The next big thing is Google chrome, it is built to fulfill customers needs. Google can track and manage all searches and display content/advertising accordingly.]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwillegan.com%2F2009%2F10%2F23%2Fsocial-media-and-seo%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwillegan.com%2F2009%2F10%2F23%2Fsocial-media-and-seo%2F" height="61" width="51" /></a></div><p style="text-align: center;">Notes taken from the SEO session at <a href="http://www.marketingprofs.com/events/8/conference" target="_blank">Marketing Profs Digital Mixer - Chicago</a></p>
<h2 style="text-align: center;">Social Media &amp; SEO</h2>
<h2 style="text-align: center;"><a href="http://willegan.com/wp-content/uploads/marketing_profs_seo_chicago.jpg"><img class="aligncenter size-medium wp-image-376" title="marketing_profs_seo_chicago" src="http://willegan.com/wp-content/uploads/marketing_profs_seo_chicago-300x244.jpg" alt="marketing_profs_seo_chicago" width="300" height="244" /></a></h2>
<h2 style="text-align: center;"></h2>
<h2 style="text-align: center;"></h2>
<h2 style="text-align: center;"></h2>
<p style="text-align: center;"><a href="http://willegan.com/wp-content/uploads/marketing_profs_seo_chicago.jpg">Social Conversations</a></p>
<p style="text-align: center;">
<p style="text-align: center;">
<p style="text-align: center;">
<p style="text-align: center;"><em>Before I begin my notes I would like to officially claim the coin of WMS - Weapons of Mass Search<br />
</em></p>
<p style="text-align: left;">Liana began by rocking the establishment, the second largest search engine other than Google is Youtube, over 10 billion videos were viewed in the U.S. in August. The next big thing is Google chrome, it is built to fulfill customers needs. Google can track and manage all searches and display content/advertising accordingly.</p>
<p style="text-align: left;">Furthermore, search has taken content beyond the web-browser. Mobile devices such as the iPhone is an example of this. Content is crucial, but optimized content is king. Personally, I think that whilst this is true, context of content is important also. Google is following this notion by developing the context of how content is delivered.</p>
<p style="text-align: left;">It is important to know whether your audience is local, national or global. Optimise your content to these audiences, geo-tagging in Google can help you do this.</p>
<p style="text-align: left;"><strong>Final Thought: </strong>&#8220;<em>Throwing Up Tactics Without A Strategy is Like Doing Nothing At All</em>&#8221; - <a href="http://twitter.com/storyspinner" target="_blank">Liana &#8216;Li&#8221; Evans</a></p>
<p style="text-align: left;">Thanks for the session!</p>
<p style="text-align: left;"><a href="../feed/" target="_blank">Sign up to blog updates here</a> |   <a href="http://twitter.com/willegan" target="_blank">Follow Will on Twitter</a></p>

<p><a href="http://feedads.g.doubleclick.net/~a/Jbln2Tld9HN31xcW7BGPF_ZXzcw/0/da"><img src="http://feedads.g.doubleclick.net/~a/Jbln2Tld9HN31xcW7BGPF_ZXzcw/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/Jbln2Tld9HN31xcW7BGPF_ZXzcw/1/da"><img src="http://feedads.g.doubleclick.net/~a/Jbln2Tld9HN31xcW7BGPF_ZXzcw/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/willegan/~4/EWwV_5Zx4Kc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://willegan.com/2009/10/23/social-media-and-seo/feed/</wfw:commentRss>
		<feedburner:origLink>http://willegan.com/2009/10/23/social-media-and-seo/</feedburner:origLink></item>
		<item>
		<title>Actionable Listening Online - Social Media</title>
		<link>http://feedproxy.google.com/~r/willegan/~3/uzrKkLq4On4/</link>
		<comments>http://willegan.com/2009/10/22/actionable-listening-online-social-media/#comments</comments>
		<pubDate>Wed, 21 Oct 2009 16:48:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Featured]]></category>

		<category><![CDATA[Marketing Talk]]></category>

		<category><![CDATA[Ajay Bhatt]]></category>

		<category><![CDATA[Hansens Social media strategy]]></category>

		<category><![CDATA[Intel]]></category>

		<category><![CDATA[Social Media]]></category>

		<category><![CDATA[Symantec social media strategy]]></category>

		<guid isPermaLink="false">http://willegan.com/?p=360</guid>
		<description><![CDATA[The ultimate message was socializing online starts with the the notion of creating an intimate brand experience with one person. One by one, ambassadors have been created for the company using online communities and networking tools.]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwillegan.com%2F2009%2F10%2F22%2Factionable-listening-online-social-media%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwillegan.com%2F2009%2F10%2F22%2Factionable-listening-online-social-media%2F" height="61" width="51" /></a></div><p style="text-align: center;"><em>Notes taken from the &#8216;How big brands do &#8217;social media&#8221; at the<a href="http://www.marketingprofs.com/events/8/conference"> Marketing Profs Digital Mixer - Chicago</a></em></p>
<h2>How The Big Brands Do Social Media</h2>
<p style="text-align: center;"><object width="425" height="344" data="http://www.youtube.com/v/jqLPHrCQr2I&amp;rel=0&amp;color1=0xb1b1b1&amp;color2=0xcfcfcf&amp;feature=player_profilepage&amp;fs=1" type="application/x-shockwave-flash"><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always" /><param name="src" value="http://www.youtube.com/v/jqLPHrCQr2I&amp;rel=0&amp;color1=0xb1b1b1&amp;color2=0xcfcfcf&amp;feature=player_profilepage&amp;fs=1" /><param name="allowfullscreen" value="true" /></object></p>
<p style="text-align: left;">The session started with the case study of Intel&#8217;s Ajay Bhatt (Co-creator of the USB), the theme of the conversation is engaging communities online. The ultimate message was socializing online starts with the the notion of creating an intimate brand experience with one person. One by one, ambassadors have been created for the company using online communities and networking tools.</p>
<p style="text-align: left;">In relation to twitter content created by major brands, it can&#8217;t be billboard info and it shouldn&#8217;t be used as a marketing information platform. Why? Well, because your customers aren&#8217;t there to buy, they are there to communicate personally. Social media is about building relationships.</p>
<p style="text-align: left;">Symantec comments on the value of &#8217;super users&#8217;, or brand advocates/reps/&#8221;happy users&#8221; and their ability to spread positive information and &#8216;word of mouth&#8217; about your product. A non paid army of advocates of your brand, connect with them and treat them well. Companies shouldn&#8217;t be prepared to pay them monetarily, but make them feel valued and recognize their passion.</p>
<p style="text-align: left;"><strong>Personal Thought: </strong>&#8216;Find the employees in your company who are most passionate about what they sell and the industry they sell in. Choose those guys as the ones who you want to connect with your virtual networks online. Chances are they will ensure there is follow up and that the person representing the company will be able to interact on a personal level rather than a commercial.&#8217;</p>
<p style="text-align: center;">One way I know of to track your brand on all social media sites: http://addictomatic.com/</p>
<p style="text-align: left;">
<p style="text-align: center;">Notes taken from the Marketing Profs Digital Mixer in Chicago 2009, <a href="http://www.marketingprofs.com/events/8/conference">Click here to find out more.</a></p>
<p style="text-align: left;">
<p style="text-align: left;">

<p><a href="http://feedads.g.doubleclick.net/~a/EYFtmfqv_j1gfAo5qXbzUOj1noQ/0/da"><img src="http://feedads.g.doubleclick.net/~a/EYFtmfqv_j1gfAo5qXbzUOj1noQ/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/EYFtmfqv_j1gfAo5qXbzUOj1noQ/1/da"><img src="http://feedads.g.doubleclick.net/~a/EYFtmfqv_j1gfAo5qXbzUOj1noQ/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/willegan/~4/uzrKkLq4On4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://willegan.com/2009/10/22/actionable-listening-online-social-media/feed/</wfw:commentRss>
		<feedburner:origLink>http://willegan.com/2009/10/22/actionable-listening-online-social-media/</feedburner:origLink></item>
		<item>
		<title>Churn, Burn or Profits?</title>
		<link>http://feedproxy.google.com/~r/willegan/~3/pcVfMmvlEI8/</link>
		<comments>http://willegan.com/2009/10/22/churn-burn-or-profits/#comments</comments>
		<pubDate>Wed, 21 Oct 2009 15:17:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Marketing Talk]]></category>

		<category><![CDATA[Chicago]]></category>

		<category><![CDATA[Chicago email subscribers]]></category>

		<category><![CDATA[Email opt in rates]]></category>

		<category><![CDATA[Featured]]></category>

		<category><![CDATA[Marketing Profs Digital Mixer]]></category>

		<guid isPermaLink="false">http://willegan.com/?p=347</guid>
		<description><![CDATA[The current consumer climate in the United States is one where email marketing messages are more popular than any other media. However, with the increase in email marketing material also comes a responsibility to ensure you have permission to email these people. Permission marketing as outlined by Seth Godin almost 11 years ago is a crucial aspect about online communication.]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwillegan.com%2F2009%2F10%2F22%2Fchurn-burn-or-profits%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwillegan.com%2F2009%2F10%2F22%2Fchurn-burn-or-profits%2F" height="61" width="51" /></a></div><p style="text-align: center;"><em>Notes taken at the Marketing Profs Digital Mixer in Chicago. <a href="http://www.marketingprofs.com/events/8/conference" target="_blank">Find out more here&#8230;</a><br />
</em></p>
<h2 style="text-align: center;">Email usability and marketing session: 9 - 10:30 <em>(Day 1)</em></h2>
<p style="text-align: center;"><em><a href="http://www.flickr.com/photos/43583677@N08/4032217598/"><img class="size-medium wp-image-354 alignnone" title="marketing_profs_digital_mix" src="http://willegan.com/wp-content/uploads/marketing_profs_digital_mix-300x224.jpg" alt="marketing_profs_digital_mix" width="300" height="224" /><br />
Thank you to Marketing Profs for the image.</a><br />
</em></p>
<p style="text-align: left;">The current consumer climate in the United States is one where email marketing messages are more popular than any other media. However, with the increase in email marketing material also comes a responsibility to ensure you have permission to email these people. Permission marketing as outlined by Seth Godin almost 11 years ago is a crucial aspect about online communication.</p>
<p style="text-align: left;">A recent report from a leading email service provider, Silverpop,  suggest that a simple link &#8220;Share to Social&#8221; will increase forwards of an email by 25%.</p>
<p style="text-align: left;">The case study of Chicago was presented as a &#8220;real life&#8221; combination of email, social and online marketing channels coming together. NAME shared Chicago&#8217;s email subscribers volume, 85,000 leisure subscribers who receive an email once a week. The email sign up page clearly states the frequency of when emails will be sent to the subscriber. It is usually 2 - 4 months before a visitor who signs up actually comes to Chicago.</p>
<p style="text-align: left;">Email content usually consists of a story, an image and a call to action. The lead story of &#8216;What&#8217;s big&#8217; in Chicago followed up with four supportive articles. Call to action is usually mid story. Emails which are sent out attempt to mimic the website identically. In regards to social sites like YouTube, Chicago city found that many companies and people want to link to sites with great content. Ultimately creating the buzz will help generate traffic.</p>
<p style="text-align: left;"><em>Interesting point. At the end of every article on your site include a link to sign up for more info. This improved opt in rates on Chicago City website by over 100%!!</em></p>
<p style="text-align: left;"><strong>Email Crucials:</strong></p>
<ul style="text-align: left;">
<li>Open rate increase by subject line, identity (email sent by) and Trust.</li>
<li>Conversions can be measured by creating email specific landing pages which are &#8216;hidden&#8217; from mainstream site navigation.</li>
</ul>
<p style="text-align: left;">Now for some morning tea&#8230;</p>
<p style="text-align: left;"><a href="http://willegan.com/feed/" target="_blank">Sign up to blog here</a> |   <a href="http://twitter.com/willegan" target="_blank">Follow Will on Twitter</a></p>

<p><a href="http://feedads.g.doubleclick.net/~a/Be45wfDZCsFNP11qIROP-7BfDdU/0/da"><img src="http://feedads.g.doubleclick.net/~a/Be45wfDZCsFNP11qIROP-7BfDdU/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/Be45wfDZCsFNP11qIROP-7BfDdU/1/da"><img src="http://feedads.g.doubleclick.net/~a/Be45wfDZCsFNP11qIROP-7BfDdU/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/willegan/~4/pcVfMmvlEI8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://willegan.com/2009/10/22/churn-burn-or-profits/feed/</wfw:commentRss>
		<feedburner:origLink>http://willegan.com/2009/10/22/churn-burn-or-profits/</feedburner:origLink></item>
	</channel>
</rss>
