<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Web Analytics Land &#187; optimization</title>
	<atom:link href="http://webanalyticsland.com/sitecatalyst-implementation/tag/optimization/feed/" rel="self" type="application/rss+xml" />
	<link>http://webanalyticsland.com</link>
	<description>Omniture SiteCatalyst Implementation Optimization.</description>
	<lastBuildDate>Sat, 19 Nov 2011 02:24:17 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Optimize the Time Parting Plugin to get More Detail and Use Less Variables</title>
		<link>http://webanalyticsland.com/sitecatalyst-implementation/time-parting-granularity-using-saint/</link>
		<comments>http://webanalyticsland.com/sitecatalyst-implementation/time-parting-granularity-using-saint/#comments</comments>
		<pubDate>Mon, 21 Dec 2009 21:12:32 +0000</pubDate>
		<dc:creator>VaBeachKevin</dc:creator>
				<category><![CDATA[SiteCatalyst Implementation]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[day parting]]></category>
		<category><![CDATA[enhancements]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[omniture]]></category>
		<category><![CDATA[optimization]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[time parting]]></category>
		<category><![CDATA[tracking]]></category>

		<guid isPermaLink="false">http://webanalyticsland.com/?p=269</guid>
		<description><![CDATA[The Time Parting Plug-in is one of the more popular SiteCatalyst plug-ins available. A standard implementation of the Time Parting plug-in will consume 3 variables. One for Time of Day, one for the Day of Week, and one for Weekday/Weekend. How can we improve this to get more information, and more importantly use less variables? [...]]]></description>
			<content:encoded><![CDATA[<p>The Time Parting Plug-in is one of the more popular SiteCatalyst plug-ins available. A standard implementation of the <a href="http://webanalyticsland.com/sitecatalyst-implementation/dayparting-plugin-in-sitecatalyst/">Time Parting plug-in</a> will consume 3 variables. One for <strong>Time of Day</strong>, one for the <strong>Day of Week</strong>, and one for <strong>Weekday/Weekend</strong>. How can we improve this to get more information, and more importantly use less variables? Here is how I have been doing it.</p>
<p>I use a combination of stacking the variables and SAINT uploads. For those of you who are not familiar with SAINT, Omniture describes it as, <em>&#8220;&#8230;an acronym for SiteCatalyst Attribute Importing and Naming Tool. This tool enables you to download the classifications template, apply attributes to it, and then upload the data, thereby enhancing your SiteCatalyst reports with the new attributes.&#8221;</em> This will allow us to upload a lot of detail about any variable you record.</p>
<p>Here&#8217;s how I&#8217;m doing it on this site. First I am using the 2.0 version of the plug-in and not the 1.4 version that I describe in a <a href="http://webanalyticsland.com/sitecatalyst-implementation/dayparting-plugin-in-sitecatalyst/">previous post</a>. The 2.0 version includes support for Daylight Savings time and globalizes the year. You can find the 2.0 version from the SiteCatalyst Knowledge Base. If you prefer to use the 1.4 version, you can find it on this site.</p>
<pre class="brush: jscript">
/* Set Time Parting Variables */
s_hour=s.getTimeParting(&#039;h&#039;,&#039;-5&#039;);
s_day=s.getTimeParting(&#039;d&#039;,&#039;-5&#039;);
s_timepart=s_day+&quot;|&quot;+s_hour;
s.prop16=s_timepart.toLowerCase();
if (s.visEvent) s.eVar16=s.prop16;
</pre>
<p>Ok, let me explain whats going on here. As I said before the Time Parting plug-in captures 3 variables. If you notice in my code I am only using two of them. I don&#8217;t need to capture Weekday/Weekend anymore. I will take care of that later. The other two, I capture in two blank variables I created, s_day and s_hour. Next I combine the two of them in a single variable I call s_timepart, separated by a pipe. Then to ensure everything is consistent I copy the variable in all lower case to the prop that I am going to use. This next part is a little different. In the eVar I only want capture this value once per visit. Typically a simple getValOnce will be enough to get it done. Well then what happens when the visit extends from one time part into another? In that situation the Time Parting value will be different and therefore getValOnce will capture this as a new value since it has changed. I don&#8217;t want that to happen, I only want it once per visit. So this is when I tie in using the <a href="http://webanalyticsland.com/plugins/Get_Visit_Start_Plugin.pdf">get Visit Start</a> plug-in. This guarantees I will only capture the value only one time per visit.</p>
<p>This will return a report that looks like this:<br />
<img src="http://webanalyticsland.com/images/time-parting.jpg" alt="Time Parting Report in SiteCatalyst" /></p>
<p>We now have a total of 672 possible options in this report. The next thing we want to do is to classify these using SAINT. I set up 5 different categories to use. Weekday/Weekend (this is why we don&#8217;t need to capture it in the code, Day of Week, Hour of Day, Hour Part and AM/PM.<br />
<img src="http://webanalyticsland.com/images/saint-setup.png" alt="SAINT Setup" /></p>
<p>I then created the template to use that contains all of these values.<br />
<img src="http://webanalyticsland.com/images/time-parting-saint-template.png" alt="SAINT Template" /><br />
<a href="http://webanalyticsland.com/dayparting-saint.txt">You can download a copy of the template that I use here.</a><br />
Upload the template and that&#8217;s all there is to it. Do you have more conversions in the bottom of the hour or the top of the hour? How about morning vs afternoon? Which whole hour is the most profitable? Now you have an easy way to break down your time parting with finer granularity, at the sime time saving your self a couple of variables.</p>
<p>Enjoy! </p>
]]></content:encoded>
			<wfw:commentRss>http://webanalyticsland.com/sitecatalyst-implementation/time-parting-granularity-using-saint/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Increase SiteCatalyst Clickmap Functionality with Dynamic Object IDs Plug-in</title>
		<link>http://webanalyticsland.com/sitecatalyst-implementation/increase-sitecatalyst-clickmap-functionality-with-dynamic-object-ids-plug-in/</link>
		<comments>http://webanalyticsland.com/sitecatalyst-implementation/increase-sitecatalyst-clickmap-functionality-with-dynamic-object-ids-plug-in/#comments</comments>
		<pubDate>Tue, 01 Dec 2009 17:58:16 +0000</pubDate>
		<dc:creator>VaBeachKevin</dc:creator>
				<category><![CDATA[SiteCatalyst Implementation]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[coorelation]]></category>
		<category><![CDATA[enhancements]]></category>
		<category><![CDATA[implementation]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[omniture]]></category>
		<category><![CDATA[optimization]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[sitecatalyst]]></category>
		<category><![CDATA[subrelation]]></category>
		<category><![CDATA[URL length]]></category>

		<guid isPermaLink="false">http://webanalyticsland.com/?p=254</guid>
		<description><![CDATA[ClickMap. Pretty useful tool. It gives you a neat overlay that shows you what links are clicked on a page and the associated traffic. I wonder how we can make it better? Knock knock. Oh who is that at the door? Why its the Dynamic Object IDs Plugin. Please step right in.
The Dynamic Object IDs [...]]]></description>
			<content:encoded><![CDATA[<p>ClickMap. Pretty useful tool. It gives you a neat overlay that shows you what links are clicked on a page and the associated traffic. I wonder how we can make it better? Knock knock. Oh who is that at the door? Why its the Dynamic Object IDs Plugin. Please step right in.</p>
<p>The Dynamic Object IDs Plug-in dynamically adds an object ID to the click thru URL. You can see it using the debugger. It is designed to improve the function of the Clickmap. </p>
<p>Let&#8217;s take a look at an example. From the home page of this site, there are 3 links that take you to the Contact page. I click the last one on the page, then open the debugger on the page I land on. Here you can see that the click thru URL has been appended with the number of the order that it happened to appear in on the page. So now when I have multiple links on a single page each one is easily spotted in the debugger, even though they all have the same anchor text and click thru URL.<br />
<img src="http://webanalyticsland.com/images/debugshot.jpg" alt="Dynamic Object ID Plug-in" /></p>
<p>Now what do we get? If you look at the clickmap report, <strong>Site Content>Links>ClickMap</strong>, you will now see a number attached to each URL.<br />
<img src="http://webanalyticsland.com/images/clickmap-report.jpg" alt="Clickmap Report" /><br />
Now you know exactly which link was clicked.</p>
<p>Here is how I have it implemented on this site. Before the <strong>function s_doPlugins(s)</strong>  I include the code:</p>
<pre class="brush: jscript">
/* DynamicObjectIDs config */
function s_getObjectID(o) {
	var ID=o.href;
	return ID;
}
s.getObjectID=s_getObjectID
</pre>
<p>Then within the s_doPlugins(s) function, I include:</p>
<pre class="brush: jscript">
/* To setup Dynamic Object IDs */
s.setupDynamicObjectIDs();
</pre>
<p>And finally in the <strong>Plug-ins section</strong> I have the plug-in code itself.</p>
<pre class="brush: jscript">
/*
 * DynamicObjectIDs
 */
s.setupDynamicObjectIDs=new Function(&quot;&quot;
+&quot;var s=this;if(!s.doi){s.doi=1;if(s.apv&gt;3&amp;&amp;(!s.isie||!s.ismac||s.apv&quot;
+&quot;&gt;=5)){if(s.wd.attachEvent)s.wd.attachEvent(&#039;onload&#039;,s.setOIDs);else&quot;
+&quot; if(s.wd.addEventListener)s.wd.addEventListener(&#039;load&#039;,s.setOIDs,fa&quot;
+&quot;lse);else{s.doiol=s.wd.onload;s.wd.onload=s.setOIDs}}s.wd.s_semapho&quot;
+&quot;re=1}&quot;);
s.setOIDs=new Function(&quot;e&quot;,&quot;&quot;
+&quot;var s=s_c_il[&quot;+s._in+&quot;],b=s.eh(s.wd,&#039;onload&#039;),o=&#039;onclick&#039;,x,l,u,c,i&quot;
+&quot;,a=new Array;if(s.doiol){if(b)s[b]=s.wd[b];s.doiol(e)}if(s.d.links)&quot;
+&quot;{for(i=0;i&lt;s.d.links.length;i++){l=s.d.links[i];c=l[o]?&#039;&#039;+l[o]:&#039;&#039;;b&quot;
+&quot;=s.eh(l,o);z=l[b]?&#039;&#039;+l[b]:&#039;&#039;;u=s.getObjectID(l);if(u&amp;&amp;c.indexOf(&#039;s_&quot;
+&quot;objectID&#039;)&lt;0&amp;&amp;z.indexOf(&#039;s_objectID&#039;)&lt;0){u=s.repl(u,&#039;\&quot;&#039;,&#039;&#039;);u=s.re&quot;
+&quot;pl(u,&#039;\\n&#039;,&#039;&#039;).substring(0,97);l.s_oc=l[o];a[u]=a[u]?a[u]+1:1;x=&#039;&#039;;&quot;
+&quot;if(c.indexOf(&#039;.t(&#039;)&gt;=0||c.indexOf(&#039;.tl(&#039;)&gt;=0||c.indexOf(&#039;s_gs(&#039;)&gt;=0&quot;
+&quot;)x=&#039;var x=\&quot;.tl(\&quot;;&#039;;x+=&#039;s_objectID=\&quot;&#039;+u+&#039;_&#039;+a[u]+&#039;\&quot;;return this.&quot;
+&quot;s_oc?this.s_oc(e):true&#039;;if(s.isns&amp;&amp;s.apv&gt;=5)l.setAttribute(o,x);l[o&quot;
+&quot;]=new Function(&#039;e&#039;,x)}}}s.wd.s_semaphore=0;return true&quot;);
</pre>
<p>To see this code in the s_code file running this site, you can check it out <a href="http://webanalyticsland.com/super-code.php" target="_new" >here</a>.</p>
<p>Ok great. Now what else can we do with this plug-in? Lets say I want to track how many contact form submissions I received from clicking the third Contact link that appears on the Home Page? Well I could add a custom onclick function. I could add a tracking code on the end of the click thru URL. But how can I use this new plug-in to track this? </p>
<p>Recently there was a post on the Omniture blog about <a href="http://blogs.omniture.com/2009/11/24/trimming-the-fat-with-dynamic-variables/" target="_new" >using Dynamic Variables</a>. Using these variables we can now grab the  value of <strong>oid</strong>, which is the click thru URL with the new object id added to it, and you can get the <strong>pid</strong> which is the page the click happened on. I have it set up on this site:</p>
<pre class="brush: jscript">
s.prop20=s.eVar20=&quot;D=oid&quot;;
s.prop22=s.eVar22=&quot;D=pid&quot;;
</pre>
<p>Now with a simple subrelation I can get what link was clicked on what page and what events occurred, all without adding any additional code to the page. </p>
<p>Enjoy!</p>
]]></content:encoded>
			<wfw:commentRss>http://webanalyticsland.com/sitecatalyst-implementation/increase-sitecatalyst-clickmap-functionality-with-dynamic-object-ids-plug-in/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Optimizing The SiteCatalyst Page Code</title>
		<link>http://webanalyticsland.com/sitecatalyst-implementation/optimizing-the-sitecatalyst-page-code/</link>
		<comments>http://webanalyticsland.com/sitecatalyst-implementation/optimizing-the-sitecatalyst-page-code/#comments</comments>
		<pubDate>Thu, 19 Mar 2009 16:22:04 +0000</pubDate>
		<dc:creator>VaBeachKevin</dc:creator>
				<category><![CDATA[SiteCatalyst Implementation]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[implementation]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[omniture]]></category>
		<category><![CDATA[optimization]]></category>
		<category><![CDATA[sitecatalyst]]></category>

		<guid isPermaLink="false">http://webanalyticsland.com/?p=43</guid>
		<description><![CDATA[You&#8217;ve signed the agreement, you received your username, and you are ready to get started with Omniture SiteCatalyst. Or maybe you have had it a while, and are looking to optimize your installation. You&#8217;ve come to the right place. Let&#8217;s take a look at one of the two core pieces that make it work, the [...]]]></description>
			<content:encoded><![CDATA[<p>You&#8217;ve signed the agreement, you received your username, and you are ready to get started with Omniture SiteCatalyst. Or maybe you have had it a while, and are looking to optimize your installation. You&#8217;ve come to the right place. Let&#8217;s take a look at one of the two core pieces that make it work, the page code. The other piece, being the s_code.js file is a complicated animal, but the page code is pretty straight forward. </p>
<p>After logging in with admin privileges in SiteCatalyst, you can find the code files in the code manager in the admin console.</p>
<p>Here is the basic, vanilla, out of the box page code file.</p>
<pre class="brush: jscript">
&lt;!-- SiteCatalyst code version: H.19.4.
Copyright 1997-2009 Omniture, Inc. More info available at
http://www.omniture.com --&gt;
&lt;script language=&quot;JavaScript&quot; type=&quot;text/javascript&quot; src=&quot;http://INSERT-DOMAIN-AND-PATH-TO-CODE-HERE/s_code.js&quot;&gt;&lt;/script&gt;
&lt;script language=&quot;JavaScript&quot; type=&quot;text/javascript&quot;&gt;&lt;!--
/* You may give each page an identifying name, server, and channel on
the next lines. */
s.pageName=&quot;&quot;
s.server=&quot;&quot;
s.channel=&quot;&quot;
s.pageType=&quot;&quot;
s.prop1=&quot;&quot;
s.prop2=&quot;&quot;
s.prop3=&quot;&quot;
s.prop4=&quot;&quot;
s.prop5=&quot;&quot;
/* Conversion Variables */
s.campaign=&quot;&quot;
s.state=&quot;&quot;
s.zip=&quot;&quot;
s.events=&quot;&quot;
s.products=&quot;&quot;
s.purchaseID=&quot;&quot;
s.eVar1=&quot;&quot;
s.eVar2=&quot;&quot;
s.eVar3=&quot;&quot;
s.eVar4=&quot;&quot;
s.eVar5=&quot;&quot;
/************* DO NOT ALTER ANYTHING BELOW THIS LINE ! **************/
var s_code=s.t();if(s_code)document.write(s_code)//--&gt;&lt;/script&gt;
&lt;script language=&quot;JavaScript&quot; type=&quot;text/javascript&quot;&gt;&lt;!--
if(navigator.appVersion.indexOf(&#039;MSIE&#039;)&gt;=0)document.write(unescape(&#039;%3C&#039;)+&#039;\!-&#039;+&#039;-&#039;)
//--&gt;&lt;/script&gt;&lt;noscript&gt;&lt;a href=&quot;http://www.omniture.com&quot; title=&quot;Web Analytics&quot;&gt;&lt;img
src=&quot;http://mysite.112.2O7.net/b/ss/mysite/1/H.19.4--NS/0&quot;
height=&quot;1&quot; width=&quot;1&quot; border=&quot;0&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;/noscript&gt;&lt;!--/DO NOT REMOVE/--&gt;
&lt;!-- End SiteCatalyst code version: H.19.4. --&gt;
</pre>
<p>There is tons of stuff here that is completely unneeded. Lets try to strip it down a bit and see if we can lighten our page weight. Why? The lighter our page weight the quicker it will load. The lighter the page weight the more of the actual content will get indexed. Believe me, lighter is better.</p>
<p>The first thing we see is a basic introduction:</p>
<pre class="brush: jscript">
&lt;!-- SiteCatalyst code version: H.19.4.
Copyright 1997-2009 Omniture, Inc. More info available at
http://www.omniture.com --&gt;
</pre>
<p>This is absolutely not needed at all. Not a bit of it. But I do like to keep a small bit around just to keep developers who don&#8217;t know what it is aware of whats going on. For this first section I recommend chopping it down to:</p>
<pre class="brush: jscript">
&lt;!-- SiteCatalyst Code  --&gt;
</pre>
<p>Sweet and simple. No need to keep the version number in there either. Keep that in your s_code file where its needed.</p>
<p>Next thing we see is the call to the s_code.js file. </p>
<pre class="brush: jscript">
&lt;script language=&quot;JavaScript&quot; type=&quot;text/javascript&quot; src=&quot;http://INSERT-DOMAIN-AND-PATH-TO-CODE-HERE/s_code.js&quot;&gt;&lt;/script&gt;
</pre>
<p>Yank this out too. But wait you say, I need that file, I can&#8217;t get rid of it!  I&#8217;m not saying get rid of it, I just want you to move it. Keep all your JavaScript calls together where they belong, in the head section of your page. Move this call to the top of the page.<br />
EDIT: There are some potential repercussions to moving this out of the BODY section. I like to keep the code nice and neat so I keep all the .js calls in one place but this is by no means without consequence. There is nothing wrong with keeping this line with all of the rest of the code.</p>
<p>Next up is the variable section.</p>
<pre class="brush: jscript">
&lt;script language=&quot;JavaScript&quot; type=&quot;text/javascript&quot;&gt;&lt;!--
/* You may give each page an identifying name, server, and channel on
the next lines. */
s.pageName=&quot;&quot;
s.server=&quot;&quot;
s.channel=&quot;&quot;
s.pageType=&quot;&quot;
s.prop1=&quot;&quot;
s.prop2=&quot;&quot;
s.prop3=&quot;&quot;
s.prop4=&quot;&quot;
s.prop5=&quot;&quot;
/* Conversion Variables */
s.campaign=&quot;&quot;
s.state=&quot;&quot;
s.zip=&quot;&quot;
s.events=&quot;&quot;
s.products=&quot;&quot;
s.purchaseID=&quot;&quot;
s.eVar1=&quot;&quot;
s.eVar2=&quot;&quot;
s.eVar3=&quot;&quot;
s.eVar4=&quot;&quot;
s.eVar5=&quot;&quot;
</pre>
<p>Tons of useless junk here. If your not using it dump it. Only fill out variables that are specific to whats going on with that page. Try to move as many things to the s_code.js file as you can. For example if you want to use the page titles as each page name in Omniture (which I think is a good practice) then just set that one time in the s_code.js file. Something like s.pageName=document.title; and no need for that code on the page. Try to move as much stuff as you can to that file. </p>
<p>On to the end</p>
<pre class="brush: jscript">
/************* DO NOT ALTER ANYTHING BELOW THIS LINE ! **************/
var s_code=s.t();if(s_code)document.write(s_code)//--&gt;&lt;/script&gt;
&lt;script language=&quot;JavaScript&quot; type=&quot;text/javascript&quot;&gt;&lt;!--
if(navigator.appVersion.indexOf(&#039;MSIE&#039;)&gt;=0)document.write(unescape(&#039;%3C&#039;)+&#039;\!-&#039;+&#039;-&#039;)
//--&gt;&lt;/script&gt;&lt;noscript&gt;&lt;a href=&quot;http://www.omniture.com&quot; title=&quot;Web Analytics&quot;&gt;&lt;img
src=&quot;http://mysite.112.2O7.net/b/ss/mysite/1/H.19.4--NS/0&quot;
height=&quot;1&quot; width=&quot;1&quot; border=&quot;0&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;/noscript&gt;&lt;!--/DO NOT REMOVE/--&gt;
&lt;!-- End SiteCatalyst code version: H.19.4. --&gt;
</pre>
<p>This section is a disaster. You have a huge noscript section that is udderly useless. The very very very first thing I do is to kill that section. I mean Omniture themselves don&#8217;t even use it. Kill it and never look back. That leaves you with this:</p>
<pre class="brush: jscript">
/************* DO NOT ALTER ANYTHING BELOW THIS LINE ! **************/
var s_code=s.t();if(s_code)document.write(s_code)//--&gt;&lt;/script&gt;
&lt;!-- End SiteCatalyst code version: H.19.4. --&gt;
</pre>
<p>The big scary &#8220;do not alter&#8221; message is somewhat important. Well the message itself, not that actual line of text. If I am going to have someone else install the code on their site I have them leave it, so hopefully they won&#8217;t touch anything they are not supposed to. If I am putting the code on the page myself then I yank that out too. The line that follows that is the money shot. That&#8217;s what makes it work. Don&#8217;t touch it. I usually never go near that line. I say usually because there is one time where I will touch it. More on that in a few. The final closing line, yank out the version and that one is good. </p>
<p>Lets take a look at the chopped down page code where we just set a single eVar and event.</p>
<pre class="brush: jscript">
&lt;!-- SiteCatalyst Code --&gt;
&lt;script language=&quot;JavaScript&quot; type=&quot;text/javascript&quot;&gt;&lt;!--
s.events=1
s.eVar1=blue
var s_code=s.t();if(s_code)document.write(s_code)//--&gt;&lt;/script&gt;
&lt;!-- End SiteCatalyst Code --&gt;
</pre>
<p>Much better. Now I mentioned earlier that I would touch that one &#8216;money line&#8217; of the code. If I have a site that I really don&#8217;t need much info on, and i can get everything I need from the s_code.js file I will hack everything down to the absolute bare minimum. You still need the call to the s_code.js file in the head section, that will never change, but the page code can be reduced to:</p>
<pre class="brush: jscript">
&lt;script language=&quot;JavaScript&quot; type=&quot;text/javascript&quot;&gt;var s_code=s.t();if(s_code)document.write(s_code)&lt;/script&gt;
</pre>
<p>A call to the s_code.js file and that single line is the bare minimum that is needed to make SiteCatalyst work. </p>
<p>Look at your page code. Move the call to the s_code.js file to the header, move everything you can to that file, and strip out all the unnecessary junk.</p>
]]></content:encoded>
			<wfw:commentRss>http://webanalyticsland.com/sitecatalyst-implementation/optimizing-the-sitecatalyst-page-code/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
	</channel>
</rss>

