Hi, I want to use the Google Analytics AB-Testing engine. Therefore, I have to add a javascript snippet to individual product pages.
I would like to add it to the description or a short description. It works, but not enough, because the script does a redirection, which means the page loads halfway and then redirects.
Google says that I should add a script to the head-tag. Is it possible to insert a script as a "custom layout update" here: 
I could imagine something like
<default translate="label" module="page"> <label>All Pages</label> <block type="page/html" name="root" output="toHtml" template="page/3columns.phtml"> <block type="page/html_head" name="head" as="head"> <action method="addJs"><script>alert('hello')</script></action> </block> </block> </default>
source share