/*
	reflection.js for jQuery v1.03
	(c) 2006-2009 Christophe Beyls <http://www.digitalia.be>
	MIT-style license.
*/
(function(a){a.fn.extend({reflect:function(b){b=a.extend({height:1/3,opacity:0.5},b);return this.unreflect().each(function(){var c=this;if(/^img$/i.test(c.tagName)){function d(){var g=c.width,f=c.height,l,i,m,h,k;i=Math.floor((b.height>1)?Math.min(f,b.height):f*b.height);if(a.browser.msie){l=a("<img />").attr("src",c.src).css({width:g,height:f,marginBottom:i-f,filter:"flipv progid:DXImageTransform.Microsoft.Alpha(opacity="+(b.opacity*100)+", style=1, finishOpacity=0, startx=0, starty=0, finishx=0, finishy="+(i/f*100)+")"})[0]}else{l=a("<canvas />")[0];if(!l.getContext){return}h=l.getContext("2d");try{a(l).attr({width:g,height:i});h.save();h.translate(0,f-1);h.scale(1,-1);h.drawImage(c,0,0,g,f);h.restore();h.globalCompositeOperation="destination-out";k=h.createLinearGradient(0,0,0,i);k.addColorStop(0,"rgba(255, 255, 255, "+(1-b.opacity)+")");k.addColorStop(1,"rgba(255, 255, 255, 1.0)");h.fillStyle=k;h.rect(0,0,g,i);h.fill()}catch(j){return}}a(l).css({display:"block",border:0});m=a(/^a$/i.test(c.parentNode.tagName)?"<span />":"<div />").insertAfter(c).append([c,l])[0];m.className=c.className;a.data(c,"reflected",m.style.cssText=c.style.cssText);a(m).css({width:g,height:f+i,overflow:"hidden"});c.style.cssText="display: block; border: 0px";c.className="reflected"}if(c.complete){d()}else{a(c).load(d)}}})},unreflect:function(){return this.unbind("load").each(function(){var c=this,b=a.data(this,"reflected"),d;if(b!==undefined){d=c.parentNode;c.className=d.className;c.style.cssText=b;a.removeData(c,"reflected");d.parentNode.replaceChild(c,d)}})}})})(jQuery);

// AUTOLOAD CODE BLOCK (MAY BE CHANGED OR REMOVED)
jQuery(function($) {
	$("img.reflect").reflect({/* Put custom options here */});
});
// jQuery ready
(function($) {

	// detect if its IE and display alternative carousel
	isIe = false;
	if ( $.browser.msie ) {
		isIe = true;
	}
	
	// load javascript css
	$("head").append("<link>");
	obCss = $("head").children(":last");
	obCss.attr({rel:"stylesheet",type:"text/css",href:"/css/js.css"});
	
	// preload main menu rollover images
	var arBtmainmenu = new Array();
	for (var i=0; i<5; i++) {
		arBtmainmenu[i] = new Image();
		arBtmainmenu[i].src = "/images/site/css/mn_bg0"+(i+1)+"mo.gif";;
	}
	
	//scroll the carousel
	var inCarouselwidth = 670;
	var inCarouselinnerwidth = 0;
	var boOvermenu = false;
	var inXmouse = 0;
	var inSpeed = 10;
	var inMaxspeed = 8;
	var inCrawlspeed = 1;
	
	fnMenuscroll = function() {
		
		// get inner carousel position
		inLeft = parseInt($(".carouselinner").css("left"));
		
		// handle loops
		if (inLeft<=-(inCarouselinnerwidth/2)) {
			$(".carouselinner").css("left","0px");
			inLeft = 0;
		} else if (inLeft>=0) {
			$(".carouselinner").css("left",-(inCarouselinnerwidth/2)+"px");
			inLeft = -(inCarouselinnerwidth/2);
		}
		
		// handle mouse interaction
		if (boOvermenu) {
			if (inXmouse<=250) {
				// move left
				inSpeed = inMaxspeed-(inXmouse/(250/inMaxspeed));
				$(".carouselinner").css("left",inLeft+inSpeed);
			} else if (inXmouse>=420) {
				// move right
				inSpeed = (inXmouse-420)/((inCarouselwidth-420)/inMaxspeed);
				$(".carouselinner").css("left",inLeft-inSpeed);
			}
		} else {
			// crawl automatically
			$(".carouselinner").css("left",inLeft-inCrawlspeed);
		}
		
	}
	
	// show arrow open or closed
	fnTogglearrow = function(obLi,boOpen) {
		
		if (boOpen) {
			obLi.removeClass("closed");
			obLi.addClass("open");
		} else {
			obLi.removeClass("open");
			obLi.addClass("closed");
		}
		
	}
	
	// show each button once mouseover image is loaded
	fnMoloaded = function(inNum) {
		$(".carouselinner a:eq("+inNum+")").css("visibility","visible");
	}
		
	// ******************************
	// Init functions
	
	// ********** carousel **********
	initCarousel = function() {
		
		// initialise
		$(".carouselinner a").each(function() {
			inCarouselinnerwidth += $(this).outerWidth(true);
		});
		if (inCarouselinnerwidth<inCarouselwidth) {
			// the carousel content is narrower than the carousel so just display static tiles
			$(".carouselinner").css("width",inCarouselinnerwidth+"px");
		} else {
			// hide buttons while loading images
			$(".carouselinner a").css("visibility","hidden");
		
			// double up the buttons to prepare for looping
			inCarouselinnerwidth = inCarouselinnerwidth*2;
			$(".carouselinner").css("width",inCarouselinnerwidth+"px");
			$(".carouselinner").css("float","left");
			var stMenuhtml = $(".carouselinner").html();
			$(".carouselinner").html(stMenuhtml+' '+stMenuhtml);
			
			// position the buttons in the centre of the carousel
			$(".carouselinner").css("left","-"+(inCarouselinnerwidth-inCarouselwidth)/2+"px");
			
			// show feathering
			$(".feather").css("visibility","visible");
			
			// track mouse position
			$(".carousel").mousemove(function(e) {
				inXmouse = e.pageX - $(".carousel").offset().left;
			});
			$(".carousel").hover(function(){
				boOvermenu = true;
			},function(){
				boOvermenu = false;
			});
			
			// animate menu
			var int = setInterval("fnMenuscroll()",45);
			
		}
		
		// set up tile buttons
		var arBtmouseover = new Array();
		var inCount = 0;
		
		$(".carouselinner a").each(function() {
	
			// get image source
			var stSource = $(this).find('img').attr("src");
			var arFile = stSource.match(/(.*)[\/\\]([^\/\\]+)\.\w+$/);
			// arFile[1] = path, arFile[2] = filename (without extension)
			var stBtsource = "/images/uploads/tiles/"+arFile[2]+".jpg";
			var stMosource = "/images/uploads/tiles/"+arFile[2]+"mo.jpg";
			
			// preload mouseover image
			arBtmouseover[inCount] = new Image();
			arBtmouseover[inCount].onLoad = fnMoloaded(inCount);
			arBtmouseover[inCount].src = stMosource;
			
			// apply mouseover actions
			$(this).hover(function(){
				if (!isIe) $(this).find('img').unreflect();
				$(this).find('img').attr("src",stMosource);
				if (!isIe) $(this).find('img').reflect({height:30,opacity:0.5});
			},function(){
				if (!isIe) $(this).find('img').unreflect();
				$(this).find('img').attr("src",stBtsource);
				if (!isIe) $(this).find('img').reflect({height:30,opacity:0.5});
			});
			
			// add reflection
			if (!isIe) $(this).find('img').reflect({height:30,opacity:0.5});
			
			inCount += 1;
		});
		
		// show hint arrow when rolling over the hint links
		$(".carouselhintlink").each(function() {
			$(this).click(function(event){
				event.preventDefault();
			});
			$(this).hover(function(){
				inCrawlspeed = 0;
				$("#carouselhint").css("visibility","visible");
			},function(){
				inCrawlspeed = 1;
				$("#carouselhint").css("visibility","hidden");
			});
		});
	}
	
	// ********** page menu **********
	// remove the line from the bottom of the page menu
	initPageMenu = function() {
		
		
		$(".pagemenu").each(function() {
			
			$("li a", this).last().css("border-bottom","none");
			
			// set up expandable sub menus
			$("li ul", this).each(function() {
				var obExpitem = $(this).parent();
				var boOpen = false;
				obExpitem.find("ul").hide();
				obExpitem.find("a:first").each(function() {
					fnTogglearrow($(this),false);
					$(this).click(function(event){
						event.preventDefault();
						if (!boOpen) {
							fnTogglearrow($(this),true);
						}
						$(this).parent().find("ul").animate({opacity:'toggle',height:'toggle'},200,function(){
							if (boOpen) {
								fnTogglearrow($(this).parent().find("a:first"),false);
								boOpen = false;
							} else {
								boOpen = true;
							}
						});
					});
				});
				// expand the sub menu containing the current page
				$(this).find(".sel").each(function() {
					$(this).parent().show();
					fnTogglearrow($(this).parent().parent().find("a:first"),true);
					boOpen = true;
				});
			});
		});
		
	}
	
	// script to run when the page is loaded
	$(document).ready(function() {
		
		// start Carousel		   
		initCarousel();
		
		// initialise Page Menu
		initPageMenu();
		
		// ********** reflections **********
		if (!isIe) $('.highlights img').reflect({height:25,opacity:0.5});
		
		// ********** typefaces **********
		Cufon.replace('h1');
		Cufon.now();

		// ********** products **********
		$('.back').click(function(event){
			event.preventDefault();
			history.go(-1);
		});
		
		// show gift list page in the member area menu if scripts are enabled
		$('.sidemenu .mygiftlink, .giftliststf').show();
		
		// gift list add and remove links
		function fnGiftaddlink(inGiftid,stGiftname) {
			return '<a href="/offers/gift_list_add/'+inGiftid+'" class="addorange" onclick="omnitureTrackGiftlist(this,\''+stGiftname+'\')">Add to gift list</a>';
		}
		function fnGiftremovelink(inGiftid) {
			var stGiftlink = '<a href="/offers/gift_list_add/'+inGiftid+'/delete/" class="minorange">Remove from gift list</a>';
			// if not on the gift list page then add a link to it
			var stPath = location.pathname;
			var stGiftpage = '/members/my_gift_list';
			if ((stPath!=stGiftpage+'/')&&(stPath!=stGiftpage)) {
				stGiftlink = stGiftlink+'&nbsp;&nbsp;<a href="'+stGiftpage+'/" class="view">View my gift list</a>';
			}
			return stGiftlink;
		}
		
		// display gift list link next to products
		$('.giftlink.notsaved').each(function() {
			var inGiftid = $(this).attr('id').substr(4);
			$(this).html(fnGiftaddlink(inGiftid));
		});
		$('.giftlink.saved').each(function() {
			var inGiftid = $(this).attr('id').substr(4);
      var stGiftname = $(this).attr('rel');
			$(this).html(fnGiftremovelink(inGiftid,stGiftname));
		});
		
		// handle clicks on gift list links
		function fnGiftlinkinit() {
			$('.giftlink').find("a:not(.view)").click(function(event) {
				event.preventDefault();
				var obGiftlink = $(this).parent();
				var inGiftid = obGiftlink.attr('id').substr(4);
        var stGiftname = obGiftlink.attr('rel');
				var stLink = $(this).attr('href');
				$.get(stLink,function(stResult) {
					if (stResult=="added") {
						obGiftlink.html(fnGiftremovelink(inGiftid));
					} else if (stResult=="removed") {
						obGiftlink.html(fnGiftaddlink(inGiftid,stGiftname));
					} else {
						alert (stResult);
					}
					fnGiftlinkinit();
				});
			});
		}
		fnGiftlinkinit();
		
		// handle gift list send to friend form
		$('.giftliststf a.inlinebutton').click(function(event) {
			event.preventDefault();
			$(".formmessage").html("<p>Working...</p>");
			$(".formmessage").removeClass("error").addClass("success");
			$(".formmessage").show();
			obData = $(".giftliststf").serialize();
			$.post("/scripts/gift_list_stf",obData,function(stResult){
				if (stResult=="success") {
					$(".formmessage").html("<p>Your gift list has been sent</p>");
					$(".formmessage").removeClass("error").addClass("success");
				} else {
					$(".formmessage").html(stResult);
					$(".formmessage").removeClass("success").addClass("error");
				}
			});
		});
    
    // add tooltip to thumbs up button
    $('.likee_like').attr('title','Click if you\'ve tried this product and like it');
		
		// ********** clear focus **********
		$(".clearfocus").focus(function(){
			if ($(this).val()==$(this).attr("title")) {
				$(this).val("");
			}
		});
		$(".clearfocus").blur(function(){
			if ($(this).val()=="") {
				$(this).val($(this).attr("title"));
			}
		});
		
		// ********** search **********
		$(".gobutton").hover(function(){
			$(this).attr("src","/images/site/bt_arwwhblmo.gif");
		},function(){
			$(this).attr("src","/images/site/bt_arwwhbl.gif");
		});
    
  	// ********** page redirect **********
		$('a.js_redirect').each(function() {
		  var pauseTime = 1000;
		  var redirect = $(this).attr('href');
		  if (redirect !== "") {
			window.setTimeout ('redirectTo("'+redirect+'")', pauseTime);
		  }
		});
    
		
	});
	
})(jQuery);

if (window.attachEvent) window.attachEvent("onload", fnLoadie);

function fnLoadie() {
	// adjust heights in IE6
	if ($(".framemain").height()<407) {
		$(".framemain").height(407);
	}
}

function redirectTo(destination) {
  window.location.href = destination;
}

/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.09i
 */
var Cufon=(function(){var m=function(){return m.replace.apply(null,arguments)};var x=m.DOM={ready:(function(){var C=false,E={loaded:1,complete:1};var B=[],D=function(){if(C){return}C=true;for(var F;F=B.shift();F()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",D,false);window.addEventListener("pageshow",D,false)}if(!window.opera&&document.readyState){(function(){E[document.readyState]?D():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");D()}catch(F){setTimeout(arguments.callee,1)}})()}q(window,"load",D);return function(F){if(!arguments.length){D()}else{C?F():B.push(F)}}})(),root:function(){return document.documentElement||document.body}};var n=m.CSS={Size:function(C,B){this.value=parseFloat(C);this.unit=String(C).match(/[a-z%]*$/)[0]||"px";this.convert=function(D){return D/B*this.value};this.convertFrom=function(D){return D/this.value*B};this.toString=function(){return this.value+this.unit}},addClass:function(C,B){var D=C.className;C.className=D+(D&&" ")+B;return C},color:j(function(C){var B={};B.color=C.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(E,D,F){B.opacity=parseFloat(F);return"rgb("+D+")"});return B}),fontStretch:j(function(B){if(typeof B=="number"){return B}if(/%$/.test(B)){return parseFloat(B)/100}return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[B]||1}),getStyle:function(C){var B=document.defaultView;if(B&&B.getComputedStyle){return new a(B.getComputedStyle(C,null))}if(C.currentStyle){return new a(C.currentStyle)}return new a(C.style)},gradient:j(function(F){var G={id:F,type:F.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},C=F.substr(F.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var E=0,B=C.length,D;E<B;++E){D=C[E].split("=",2).reverse();G.stops.push([D[1]||E/(B-1),D[0]])}return G}),quotedList:j(function(E){var D=[],C=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,B;while(B=C.exec(E)){D.push(B[3]||B[1])}return D}),recognizesMedia:j(function(G){var E=document.createElement("style"),D,C,B;E.type="text/css";E.media=G;try{E.appendChild(document.createTextNode("/**/"))}catch(F){}C=g("head")[0];C.insertBefore(E,C.firstChild);D=(E.sheet||E.styleSheet);B=D&&!D.disabled;C.removeChild(E);return B}),removeClass:function(D,C){var B=RegExp("(?:^|\\s+)"+C+"(?=\\s|$)","g");D.className=D.className.replace(B,"");return D},supports:function(D,C){var B=document.createElement("span").style;if(B[D]===undefined){return false}B[D]=C;return B[D]===C},textAlign:function(E,D,B,C){if(D.get("textAlign")=="right"){if(B>0){E=" "+E}}else{if(B<C-1){E+=" "}}return E},textShadow:j(function(F){if(F=="none"){return null}var E=[],G={},B,C=0;var D=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(B=D.exec(F)){if(B[0]==","){E.push(G);G={};C=0}else{if(B[1]){G.color=B[1]}else{G[["offX","offY","blur"][C++]]=B[2]}}}E.push(G);return E}),textTransform:(function(){var B={uppercase:function(C){return C.toUpperCase()},lowercase:function(C){return C.toLowerCase()},capitalize:function(C){return C.replace(/\b./g,function(D){return D.toUpperCase()})}};return function(E,D){var C=B[D.get("textTransform")];return C?C(E):E}})(),whiteSpace:(function(){var D={inline:1,"inline-block":1,"run-in":1};var C=/^\s+/,B=/\s+$/;return function(H,F,G,E){if(E){if(E.nodeName.toLowerCase()=="br"){H=H.replace(C,"")}}if(D[F.get("display")]){return H}if(!G.previousSibling){H=H.replace(C,"")}if(!G.nextSibling){H=H.replace(B,"")}return H}})()};n.ready=(function(){var B=!n.recognizesMedia("all"),E=false;var D=[],H=function(){B=true;for(var K;K=D.shift();K()){}};var I=g("link"),J=g("style");function C(K){return K.disabled||G(K.sheet,K.media||"screen")}function G(M,P){if(!n.recognizesMedia(P||"all")){return true}if(!M||M.disabled){return false}try{var Q=M.cssRules,O;if(Q){search:for(var L=0,K=Q.length;O=Q[L],L<K;++L){switch(O.type){case 2:break;case 3:if(!G(O.styleSheet,O.media.mediaText)){return false}break;default:break search}}}}catch(N){}return true}function F(){if(document.createStyleSheet){return true}var L,K;for(K=0;L=I[K];++K){if(L.rel.toLowerCase()=="stylesheet"&&!C(L)){return false}}for(K=0;L=J[K];++K){if(!C(L)){return false}}return true}x.ready(function(){if(!E){E=n.getStyle(document.body).isUsable()}if(B||(E&&F())){H()}else{setTimeout(arguments.callee,10)}});return function(K){if(B){K()}else{D.push(K)}}})();function s(D){var C=this.face=D.face,B={"\u0020":1,"\u00a0":1,"\u3000":1};this.glyphs=D.glyphs;this.w=D.w;this.baseSize=parseInt(C["units-per-em"],10);this.family=C["font-family"].toLowerCase();this.weight=C["font-weight"];this.style=C["font-style"]||"normal";this.viewBox=(function(){var F=C.bbox.split(/\s+/);var E={minX:parseInt(F[0],10),minY:parseInt(F[1],10),maxX:parseInt(F[2],10),maxY:parseInt(F[3],10)};E.width=E.maxX-E.minX;E.height=E.maxY-E.minY;E.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return E})();this.ascent=-parseInt(C.ascent,10);this.descent=-parseInt(C.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(L,N,E){var O=this.glyphs,M,K,G,P=[],F=0,J=-1,I=-1,H;while(H=L[++J]){M=O[H]||this.missingGlyph;if(!M){continue}if(K){F-=G=K[H]||0;P[I]-=G}F+=P[++I]=~~(M.w||this.w)+N+(B[H]?E:0);K=M.k}P.total=F;return P}}function f(){var C={},B={oblique:"italic",italic:"oblique"};this.add=function(D){(C[D.style]||(C[D.style]={}))[D.weight]=D};this.get=function(H,I){var G=C[H]||C[B[H]]||C.normal||C.italic||C.oblique;if(!G){return null}I={normal:400,bold:700}[I]||parseInt(I,10);if(G[I]){return G[I]}var E={1:1,99:0}[I%100],K=[],F,D;if(E===undefined){E=I>400}if(I==500){I=400}for(var J in G){if(!k(G,J)){continue}J=parseInt(J,10);if(!F||J<F){F=J}if(!D||J>D){D=J}K.push(J)}if(I<F){I=F}if(I>D){I=D}K.sort(function(M,L){return(E?(M>=I&&L>=I)?M<L:M>L:(M<=I&&L<=I)?M>L:M<L)?-1:1});return G[K[0]]}}function r(){function D(F,G){if(F.contains){return F.contains(G)}return F.compareDocumentPosition(G)&16}function B(G){var F=G.relatedTarget;if(!F||D(this,F)){return}C(this,G.type=="mouseover")}function E(F){C(this,F.type=="mouseenter")}function C(F,G){setTimeout(function(){var H=d.get(F).options;m.replace(F,G?h(H,H.hover):H,true)},10)}this.attach=function(F){if(F.onmouseenter===undefined){q(F,"mouseover",B);q(F,"mouseout",B)}else{q(F,"mouseenter",E);q(F,"mouseleave",E)}}}function u(){var C=[],D={};function B(H){var E=[],G;for(var F=0;G=H[F];++F){E[F]=C[D[G]]}return E}this.add=function(F,E){D[F]=C.push(E)-1};this.repeat=function(){var E=arguments.length?B(arguments):C,F;for(var G=0;F=E[G++];){m.replace(F[0],F[1],true)}}}function A(){var D={},B=0;function C(E){return E.cufid||(E.cufid=++B)}this.get=function(E){var F=C(E);return D[F]||(D[F]={})}}function a(B){var D={},C={};this.extend=function(E){for(var F in E){if(k(E,F)){D[F]=E[F]}}return this};this.get=function(E){return D[E]!=undefined?D[E]:B[E]};this.getSize=function(F,E){return C[F]||(C[F]=new n.Size(this.get(F),E))};this.isUsable=function(){return !!B}}function q(C,B,D){if(C.addEventListener){C.addEventListener(B,D,false)}else{if(C.attachEvent){C.attachEvent("on"+B,function(){return D.call(C,window.event)})}}}function v(C,B){var D=d.get(C);if(D.options){return C}if(B.hover&&B.hoverables[C.nodeName.toLowerCase()]){b.attach(C)}D.options=B;return C}function j(B){var C={};return function(D){if(!k(C,D)){C[D]=B.apply(null,arguments)}return C[D]}}function c(F,E){var B=n.quotedList(E.get("fontFamily").toLowerCase()),D;for(var C=0;D=B[C];++C){if(i[D]){return i[D].get(E.get("fontStyle"),E.get("fontWeight"))}}return null}function g(B){return document.getElementsByTagName(B)}function k(C,B){return C.hasOwnProperty(B)}function h(){var C={},B,F;for(var E=0,D=arguments.length;B=arguments[E],E<D;++E){for(F in B){if(k(B,F)){C[F]=B[F]}}}return C}function o(E,M,C,N,F,D){var K=document.createDocumentFragment(),H;if(M===""){return K}var L=N.separate;var I=M.split(p[L]),B=(L=="words");if(B&&t){if(/^\s/.test(M)){I.unshift("")}if(/\s$/.test(M)){I.push("")}}for(var J=0,G=I.length;J<G;++J){H=z[N.engine](E,B?n.textAlign(I[J],C,J,G):I[J],C,N,F,D,J<G-1);if(H){K.appendChild(H)}}return K}function l(D,M){var C=D.nodeName.toLowerCase();if(M.ignore[C]){return}var E=!M.textless[C];var B=n.getStyle(v(D,M)).extend(M);var F=c(D,B),G,K,I,H,L,J;if(!F){return}for(G=D.firstChild;G;G=I){K=G.nodeType;I=G.nextSibling;if(E&&K==3){if(H){H.appendData(G.data);D.removeChild(G)}else{H=G}if(I){continue}}if(H){D.replaceChild(o(F,n.whiteSpace(H.data,B,H,J),B,M,G,D),H);H=null}if(K==1){if(G.firstChild){if(G.nodeName.toLowerCase()=="cufon"){z[M.engine](F,null,B,M,G,D)}else{arguments.callee(G,M)}}J=G}}}var t=" ".split(/\s+/).length==0;var d=new A();var b=new r();var y=new u();var e=false;var z={},i={},w={autoDetect:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},ignore:{applet:1,canvas:1,col:1,colgroup:1,head:1,iframe:1,map:1,optgroup:1,option:1,script:1,select:1,style:1,textarea:1,title:1,pre:1},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||g),separate:"words",textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:"none"};var p={words:/\s/.test("\u00a0")?/[^\S\u00a0]+/:/\s+/,characters:"",none:/^/};m.now=function(){x.ready();return m};m.refresh=function(){y.repeat.apply(y,arguments);return m};m.registerEngine=function(C,B){if(!B){return m}z[C]=B;return m.set("engine",C)};m.registerFont=function(D){if(!D){return m}var B=new s(D),C=B.family;if(!i[C]){i[C]=new f()}i[C].add(B);return m.set("fontFamily",'"'+C+'"')};m.replace=function(D,C,B){C=h(w,C);if(!C.engine){return m}if(!e){n.addClass(x.root(),"cufon-active cufon-loading");n.ready(function(){n.addClass(n.removeClass(x.root(),"cufon-loading"),"cufon-ready")});e=true}if(C.hover){C.forceHitArea=true}if(C.autoDetect){delete C.fontFamily}if(typeof C.textShadow=="string"){C.textShadow=n.textShadow(C.textShadow)}if(typeof C.color=="string"&&/^-/.test(C.color)){C.textGradient=n.gradient(C.color)}else{delete C.textGradient}if(!B){y.add(D,arguments)}if(D.nodeType||typeof D=="string"){D=[D]}n.ready(function(){for(var F=0,E=D.length;F<E;++F){var G=D[F];if(typeof G=="string"){m.replace(C.selector(G),C,true)}else{l(G,C)}}});return m};m.set=function(B,C){w[B]=C;return m};return m})();Cufon.registerEngine("vml",(function(){var e=document.namespaces;if(!e){return}e.add("cvml","urn:schemas-microsoft-com:vml");e=null;var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return}b=null;var h=(document.documentMode||0)<8;document.write(('<style type="text/css">cufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}</style>").replace(/;/g,"!important;"));function c(i,j){return a(i,/(?:em|ex|%)$|^[a-z-]+$/i.test(j)?"1em":j)}function a(l,m){if(m==="0"){return 0}if(/px$/i.test(m)){return parseFloat(m)}var k=l.style.left,j=l.runtimeStyle.left;l.runtimeStyle.left=l.currentStyle.left;l.style.left=m.replace("%","em");var i=l.style.pixelLeft;l.style.left=k;l.runtimeStyle.left=j;return i}function f(l,k,j,n){var i="computed"+n,m=k[i];if(isNaN(m)){m=k.get(n);k[i]=m=(m=="normal")?0:~~j.convertFrom(a(l,m))}return m}var g={};function d(p){var q=p.id;if(!g[q]){var n=p.stops,o=document.createElement("cvml:fill"),i=[];o.type="gradient";o.angle=180;o.focus="0";o.method="sigma";o.color=n[0][1];for(var m=1,l=n.length-1;m<l;++m){i.push(n[m][0]*100+"% "+n[m][1])}o.colors=i.join(",");o.color2=n[l][1];g[q]=o}return g[q]}return function(ac,G,Y,C,K,ad,W){var n=(G===null);if(n){G=K.alt}var I=ac.viewBox;var p=Y.computedFontSize||(Y.computedFontSize=new Cufon.CSS.Size(c(ad,Y.get("fontSize"))+"px",ac.baseSize));var y,q;if(n){y=K;q=K.firstChild}else{y=document.createElement("cufon");y.className="cufon cufon-vml";y.alt=G;q=document.createElement("cufoncanvas");y.appendChild(q);if(C.printable){var Z=document.createElement("cufontext");Z.appendChild(document.createTextNode(G));y.appendChild(Z)}if(!W){y.appendChild(document.createElement("cvml:shape"))}}var ai=y.style;var R=q.style;var l=p.convert(I.height),af=Math.ceil(l);var V=af/l;var P=V*Cufon.CSS.fontStretch(Y.get("fontStretch"));var U=I.minX,T=I.minY;R.height=af;R.top=Math.round(p.convert(T-ac.ascent));R.left=Math.round(p.convert(U));ai.height=p.convert(ac.height)+"px";var F=Y.get("color");var ag=Cufon.CSS.textTransform(G,Y).split("");var L=ac.spacing(ag,f(ad,Y,p,"letterSpacing"),f(ad,Y,p,"wordSpacing"));if(!L.length){return null}var k=L.total;var x=-U+k+(I.width-L[L.length-1]);var ah=p.convert(x*P),X=Math.round(ah);var O=x+","+I.height,m;var J="r"+O+"ns";var u=C.textGradient&&d(C.textGradient);var o=ac.glyphs,S=0;var H=C.textShadow;var ab=-1,aa=0,w;while(w=ag[++ab]){var D=o[ag[ab]]||ac.missingGlyph,v;if(!D){continue}if(n){v=q.childNodes[aa];while(v.firstChild){v.removeChild(v.firstChild)}}else{v=document.createElement("cvml:shape");q.appendChild(v)}v.stroked="f";v.coordsize=O;v.coordorigin=m=(U-S)+","+T;v.path=(D.d?"m"+D.d+"xe":"")+"m"+m+J;v.fillcolor=F;if(u){v.appendChild(u.cloneNode(false))}var ae=v.style;ae.width=X;ae.height=af;if(H){var s=H[0],r=H[1];var B=Cufon.CSS.color(s.color),z;var N=document.createElement("cvml:shadow");N.on="t";N.color=B.color;N.offset=s.offX+","+s.offY;if(r){z=Cufon.CSS.color(r.color);N.type="double";N.color2=z.color;N.offset2=r.offX+","+r.offY}N.opacity=B.opacity||(z&&z.opacity)||1;v.appendChild(N)}S+=L[aa++]}var M=v.nextSibling,t,A;if(C.forceHitArea){if(!M){M=document.createElement("cvml:rect");M.stroked="f";M.className="cufon-vml-cover";t=document.createElement("cvml:fill");t.opacity=0;M.appendChild(t);q.appendChild(M)}A=M.style;A.width=X;A.height=af}else{if(M){q.removeChild(M)}}ai.width=Math.max(Math.ceil(p.convert(k*P)),0);if(h){var Q=Y.computedYAdjust;if(Q===undefined){var E=Y.get("lineHeight");if(E=="normal"){E="1em"}else{if(!isNaN(E)){E+="em"}}Y.computedYAdjust=Q=0.5*(a(ad,E)-parseFloat(ai.height))}if(Q){ai.marginTop=Math.ceil(Q)+"px";ai.marginBottom=Q+"px"}}return y}})());Cufon.registerEngine("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply){return}b=null;var a=Cufon.CSS.supports("display","inline-block");var e=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var f=document.createElement("style");f.type="text/css";f.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?"cufon canvas{position:relative;}":"cufon canvas{position:absolute;}")+"}@media print{cufon{padding:0;}cufon canvas{display:none;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f);function d(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate}h[g[j].m].apply(h,g[j].a)}return g}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}}return function(V,w,P,t,C,W){var k=(w===null);if(k){w=C.getAttribute("alt")}var A=V.viewBox;var m=P.getSize("fontSize",V.baseSize);var B=0,O=0,N=0,u=0;var z=t.textShadow,L=[];if(z){for(var U=z.length;U--;){var F=z[U];var K=m.convertFrom(parseFloat(F.offX));var I=m.convertFrom(parseFloat(F.offY));L[U]=[K,I];if(I<B){B=I}if(K>O){O=K}if(I>N){N=I}if(K<u){u=K}}}var Z=Cufon.CSS.textTransform(w,P).split("");var E=V.spacing(Z,~~m.convertFrom(parseFloat(P.get("letterSpacing"))||0),~~m.convertFrom(parseFloat(P.get("wordSpacing"))||0));if(!E.length){return null}var h=E.total;O+=A.width-E[E.length-1];u+=A.minX;var s,n;if(k){s=C;n=C.firstChild}else{s=document.createElement("cufon");s.className="cufon cufon-canvas";s.setAttribute("alt",w);n=document.createElement("canvas");s.appendChild(n);if(t.printable){var S=document.createElement("cufontext");S.appendChild(document.createTextNode(w));s.appendChild(S)}}var aa=s.style;var H=n.style;var j=m.convert(A.height);var Y=Math.ceil(j);var M=Y/j;var G=M*Cufon.CSS.fontStretch(P.get("fontStretch"));var J=h*G;var Q=Math.ceil(m.convert(J+O-u));var o=Math.ceil(m.convert(A.height-B+N));n.width=Q;n.height=o;H.width=Q+"px";H.height=o+"px";B+=A.minY;H.top=Math.round(m.convert(B-V.ascent))+"px";H.left=Math.round(m.convert(u))+"px";var r=Math.max(Math.ceil(m.convert(J)),0)+"px";if(a){aa.width=r;aa.height=m.convert(V.height)+"px"}else{aa.paddingLeft=r;aa.paddingBottom=(m.convert(V.height)-1)+"px"}var X=n.getContext("2d"),D=j/A.height;X.scale(D,D*M);X.translate(-u,-B);X.save();function T(){var x=V.glyphs,ab,l=-1,g=-1,y;X.scale(G,1);while(y=Z[++l]){var ab=x[Z[l]]||V.missingGlyph;if(!ab){continue}if(ab.d){X.beginPath();if(ab.code){c(ab.code,X)}else{ab.code=d("m"+ab.d,X)}X.fill()}X.translate(E[++g],0)}X.restore()}if(z){for(var U=z.length;U--;){var F=z[U];X.save();X.fillStyle=F.color;X.translate.apply(X,L[U]);T()}}var q=t.textGradient;if(q){var v=q.stops,p=X.createLinearGradient(0,A.minY,0,A.maxY);for(var U=0,R=v.length;U<R;++U){p.addColorStop.apply(p,v[U])}X.fillStyle=p}else{X.fillStyle=P.get("color")}T();return s}})());
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright (c) 1992-97 Hewlett-Packard. All rights reserved.
 * 
 * Trademark:
 * Gill Sans Light is a trademark of Monotype.
 */
Cufon.registerFont({"w":200,"face":{"font-family":"Gill Sans Light","font-weight":400,"font-stretch":"normal","units-per-em":"400","panose-1":"2 11 4 2 2 2 4 2 2 4","ascent":"320","descent":"-80","x-height":"4","bbox":"-18 -301 413 103","underline-thickness":"9.76562","underline-position":"-14.6484","unicode-range":"U+0020-U+2019"},"glyphs":{" ":{"w":111},"!":{"d":"29,-79r-6,-197r26,0r-7,197r-13,0xm22,-38r27,0r0,38r-27,0r0,-38","w":70},"\"":{"d":"19,-181v-3,-29,-5,-59,-4,-92r26,0v1,33,-1,63,-4,92r-18,0xm74,-181v-3,-29,-5,-59,-4,-92r26,0r-3,92r-19,0","w":111},"#":{"d":"121,-273r-16,77r79,0r16,-77r18,0r-16,77r31,0r0,19r-35,0r-15,73r50,0r0,19r-54,0r-18,88r-18,0r18,-88r-79,0r-18,88r-18,0r18,-88r-33,0r0,-19r37,0r15,-73r-52,0r0,-19r56,0r16,-77r18,0xm101,-177r-15,73r79,0r15,-73r-79,0","w":264},"$":{"d":"16,-198v-1,-43,34,-66,77,-67r0,-26r20,0r0,26v30,3,48,11,68,27r0,21v-22,-15,-40,-24,-68,-29r0,103v46,12,81,28,81,77v0,42,-36,68,-81,69r0,26r-20,0r0,-26v-36,-2,-56,-13,-79,-32r0,-21v25,19,45,30,79,34r0,-109v-38,-11,-76,-32,-77,-73xm93,-246v-47,-4,-75,51,-40,80v9,7,23,14,40,19r0,-99xm113,-16v50,3,80,-54,42,-85v-9,-8,-23,-14,-42,-19r0,104","w":208},"%":{"d":"72,-149v-37,0,-64,-26,-64,-63v0,-37,27,-64,64,-64v37,0,65,28,65,64v0,36,-27,63,-65,63xm72,-260v-26,0,-47,22,-47,48v0,25,22,47,47,47v25,0,47,-22,47,-47v0,-26,-21,-48,-47,-48xm21,5r218,-281r20,0r-218,281r-20,0xm207,5v-37,0,-64,-26,-64,-63v0,-37,27,-64,64,-64v37,0,65,27,65,64v0,37,-27,63,-65,63xm207,-106v-25,-1,-46,22,-46,48v0,26,21,47,46,47v25,0,47,-22,47,-47v0,-26,-21,-48,-47,-48","w":279},"&":{"d":"79,-145v-19,-20,-35,-36,-36,-64v-1,-31,30,-59,63,-59v32,0,63,24,63,54v0,39,-28,58,-58,75r63,66v11,-20,23,-43,29,-65r22,0v-7,23,-24,57,-38,78r57,60r-28,0r-41,-43v-21,27,-51,45,-94,46v-42,0,-72,-25,-71,-67v1,-39,36,-67,69,-81xm33,-65v-1,44,51,59,88,39v13,-7,28,-19,41,-31r-70,-73v-28,11,-58,32,-59,65xm106,-248v-34,0,-54,35,-33,64v6,8,13,19,24,31v21,-8,51,-31,51,-56v0,-22,-19,-39,-42,-39","w":246},"'":{"d":"35,-181v-3,-29,-5,-59,-4,-92r27,0v1,33,-1,63,-4,92r-19,0","w":88},"(":{"d":"113,93v-44,-36,-81,-109,-81,-185v0,-75,38,-148,81,-184r17,0v-43,35,-79,110,-79,184v0,74,36,150,79,185r-17,0","w":133},")":{"d":"20,-276v43,36,81,109,81,184v0,76,-37,149,-81,185r-17,0v43,-36,79,-111,79,-185v0,-74,-36,-149,-79,-184r17,0","w":133},"*":{"d":"104,-273v-1,24,-10,54,-6,75r46,-58r14,14v-17,16,-43,32,-56,48r73,-8r0,20v-24,0,-55,-10,-75,-6r58,46r-14,14v-16,-17,-32,-43,-48,-56r7,73r-19,0v0,-24,12,-56,5,-75r-46,58r-13,-14v17,-16,43,-32,56,-48r-73,8r0,-20v24,0,54,10,74,6r-57,-46r14,-14v17,17,29,46,48,56r-8,-73r20,0","w":187},"+":{"d":"123,-132r-96,0r0,-17r96,0r0,-96r17,0r0,96r97,0r0,17r-97,0r0,96r-17,0r0,-96","w":264},",":{"d":"22,0r0,-39r26,0v2,38,-2,70,-26,86v-2,-20,14,-25,8,-47r-8,0","w":70},"-":{"d":"15,-99r95,0r0,19r-95,0r0,-19","w":125},".":{"d":"22,-38r27,0r0,38r-27,0r0,-38","w":70},"\/":{"d":"108,-278r-88,282r-19,0r88,-282r19,0","w":112},"0":{"d":"100,4v-118,-3,-118,-278,0,-281v118,3,118,278,0,281xm100,-15v89,-10,88,-232,0,-243v-88,10,-90,233,0,243"},"1":{"d":"90,0r0,-273r20,0r0,273r-20,0"},"2":{"d":"20,-251v45,-48,147,-24,142,52v-4,64,-58,136,-101,180r127,0r0,19r-173,0v57,-53,119,-119,126,-199v3,-31,-28,-61,-61,-59v-26,1,-44,15,-60,31r0,-24"},"3":{"d":"80,-153v37,3,65,-19,66,-52v2,-57,-80,-66,-115,-35r0,-20v46,-35,136,-13,136,51v0,32,-20,58,-46,65v29,6,51,32,51,65v0,74,-85,103,-145,69r0,-20v46,28,126,14,124,-45v0,-35,-31,-64,-71,-59r0,-19"},"4":{"d":"6,-104r0,-8r139,-161r7,0r0,150r36,0r0,19r-36,0r0,104r-20,0r0,-104r-126,0xm132,-123r0,-112r-97,112r97,0"},"5":{"d":"57,-167v62,-11,113,20,113,79v0,80,-94,117,-154,73r0,-22v45,37,134,24,134,-47v0,-55,-58,-81,-111,-62r0,-127r116,0r0,19r-98,0r0,87"},"6":{"d":"105,4v-93,-1,-98,-128,-51,-195v22,-31,48,-60,83,-86r13,14v-51,38,-84,71,-100,134v49,-42,135,-13,135,57v0,45,-34,77,-80,76xm46,-103v-6,50,16,88,62,88v29,0,56,-26,56,-57v0,-62,-86,-75,-118,-31"},"7":{"d":"47,0r114,-254r-149,0r0,-19r179,0r-126,281"},"8":{"d":"174,-206v0,29,-16,53,-39,63v26,11,43,37,43,71v0,44,-34,76,-78,76v-44,0,-78,-32,-78,-76v0,-34,19,-58,44,-70v-22,-10,-40,-34,-40,-64v0,-38,36,-71,74,-71v38,0,74,33,74,71xm47,-204v0,29,24,53,53,53v29,0,53,-23,53,-53v0,-30,-24,-54,-53,-54v-29,0,-53,25,-53,54xm158,-74v0,-34,-25,-59,-58,-59v-31,0,-57,29,-57,59v0,31,25,59,57,59v32,0,58,-27,58,-59"},"9":{"d":"93,-277v92,2,98,128,51,195v-22,31,-48,60,-83,86r-13,-14v51,-38,84,-71,100,-134v-49,42,-135,13,-135,-57v0,-45,35,-76,80,-76xm152,-170v6,-50,-16,-88,-62,-88v-29,0,-56,26,-56,57v0,61,87,76,118,31"},":":{"d":"22,-38r27,0r0,38r-27,0r0,-38xm22,-180r27,0r0,39r-27,0r0,-39","w":70},";":{"d":"22,0r0,-39r26,0v2,38,-2,70,-26,86v-2,-20,14,-25,8,-47r-8,0xm23,-180r26,0r0,39r-26,0r0,-39","w":70},"<":{"d":"27,-132r0,-17r210,-88r0,18r-186,78r186,79r0,18","w":264},"=":{"d":"27,-101r210,0r0,17r-210,0r0,-17xm27,-197r210,0r0,17r-210,0r0,-17","w":264},">":{"d":"237,-132r-210,88r0,-18r186,-79r-186,-78r0,-18r210,88r0,17","w":264},"?":{"d":"76,-221v3,-38,-47,-47,-66,-19r8,-29v35,-22,78,9,78,48v0,63,-79,99,-41,153r-9,5v-49,-51,27,-98,30,-158xm38,-38r26,0r0,38r-26,0r0,-38","w":112},"@":{"d":"147,-193v28,0,53,17,66,38r0,-41r21,0v2,47,-5,110,7,145v5,13,13,20,21,20v32,0,40,-49,40,-93v0,-83,-52,-138,-136,-138v-90,0,-148,63,-148,155v0,116,95,177,213,148r0,16v-126,29,-232,-40,-232,-164v0,-102,65,-171,167,-171v93,0,155,61,155,154v0,56,-18,108,-65,111v-20,1,-34,-26,-39,-47v-12,26,-39,48,-71,47v-44,0,-79,-43,-79,-90v0,-48,34,-90,80,-90xm213,-104v0,-40,-24,-73,-62,-73v-36,0,-63,35,-63,74v0,39,27,74,63,74v40,0,62,-34,62,-75","w":319},"A":{"d":"128,-276r11,0r126,276r-23,0r-43,-95r-133,0r-43,95r-21,0xm132,-241r-58,129r117,0","w":266},"B":{"d":"204,-72v0,77,-90,75,-172,72r0,-273v75,-4,149,-1,149,69v0,30,-19,53,-44,62v37,6,68,31,67,70xm158,-200v0,-51,-50,-58,-105,-54r0,108v55,3,105,-2,105,-54xm180,-74v0,-56,-65,-58,-127,-55r0,110v62,2,127,4,127,-55","w":212},"C":{"d":"162,-16v44,-1,68,-9,100,-27r0,21v-33,16,-56,25,-102,25v-73,0,-140,-64,-140,-139v0,-77,63,-143,140,-140v44,1,68,9,102,25r0,22v-32,-18,-55,-27,-100,-28v-65,-2,-119,57,-119,121v0,63,54,122,119,120","w":270},"D":{"d":"276,-136v0,83,-63,136,-147,136r-97,0r0,-273r101,0v83,-1,143,55,143,137xm253,-136v0,-71,-49,-119,-120,-118r-80,0r0,235r76,0v73,0,124,-45,124,-117","w":296},"E":{"d":"32,0r0,-273r147,0r0,18r-126,0r0,109r123,0r0,18r-123,0r0,110r131,0r0,18r-152,0","w":196},"F":{"d":"31,0r0,-273r141,0r0,18r-120,0r0,109r106,0r0,18r-106,0r0,128r-21,0","w":175},"G":{"d":"43,-136v0,66,54,122,121,120v30,0,57,-6,80,-18r0,-85r-57,0r0,-18r78,0r0,115v-29,17,-61,25,-98,25v-79,0,-147,-62,-147,-139v0,-76,64,-140,141,-140v45,0,70,9,104,25r0,22v-30,-19,-57,-28,-101,-28v-67,-1,-121,54,-121,121","w":287},"H":{"d":"32,0r0,-273r21,0r0,127r182,0r0,-127r21,0r0,273r-21,0r0,-128r-182,0r0,128r-21,0","w":287},"I":{"d":"31,0r0,-273r21,0r0,273r-21,0","w":83},"J":{"d":"-18,60v36,5,51,-17,51,-55r0,-278r21,0r0,278v1,48,-22,80,-69,74","w":83},"K":{"d":"52,0r-22,0r0,-273r22,0r0,137r134,-137r26,0r-134,135r143,138r-29,0r-140,-137r0,137","w":212},"L":{"d":"32,0r0,-273r21,0r0,255r135,0r0,18r-156,0","w":187},"M":{"d":"157,-114r-2,0r-103,-127r0,241r-21,0r0,-273r20,0r106,130r104,-130r20,0r0,273r-21,0r0,-244","w":312},"N":{"d":"52,0r-21,0r0,-273r18,0r207,235r0,-235r21,0r0,276r-13,0r-212,-241r0,238","w":308},"O":{"d":"165,3v-76,0,-145,-64,-145,-139v0,-75,69,-140,145,-140v77,0,144,64,144,140v0,75,-67,139,-144,139xm165,-16v65,0,121,-57,121,-120v0,-64,-56,-121,-121,-121v-65,0,-121,56,-121,121v0,64,57,120,121,120","w":329},"P":{"d":"196,-198v-1,66,-69,79,-144,74r0,124r-21,0r0,-273v82,-4,165,0,165,75xm172,-198v0,-58,-60,-59,-120,-56r0,111v60,3,120,2,120,-55","w":203},"Q":{"d":"185,2v23,22,75,49,115,28r-22,22v-44,6,-100,-23,-125,-49v-70,-3,-133,-68,-133,-139v0,-75,69,-140,145,-140v77,0,144,64,144,140v0,70,-59,132,-124,138xm165,-257v-65,0,-121,56,-121,121v0,64,57,120,121,120v65,0,121,-57,121,-120v0,-64,-56,-121,-121,-121","w":329},"R":{"d":"192,-202v1,34,-22,57,-52,65v41,32,67,92,98,137r-24,0v-25,-36,-54,-95,-83,-121v-15,-13,-50,-8,-78,-9r0,130r-21,0r0,-273v78,-3,160,-2,160,71xm169,-201v0,-54,-59,-56,-116,-53r0,107v58,2,116,1,116,-54","w":229},"S":{"d":"18,-206v0,-66,93,-88,143,-53r0,23v-40,-32,-124,-27,-120,33v5,72,130,44,130,134v0,72,-103,92,-148,48r0,-24v21,15,39,28,68,29v32,1,60,-26,58,-57v-5,-75,-131,-45,-131,-133","w":187},"T":{"d":"104,0r0,-255r-102,0r0,-18r226,0r0,18r-103,0r0,255r-21,0","w":229},"U":{"d":"140,-16v59,0,93,-43,93,-105r0,-152r21,0r0,151v0,75,-41,125,-114,125v-73,0,-114,-50,-114,-125r0,-151r21,0r0,152v-1,62,34,105,93,105","w":279},"V":{"d":"121,3r-5,0r-115,-276r22,0r96,232r96,-232r21,0","w":237},"W":{"d":"111,3r-5,0r-106,-276r22,0r87,228r91,-231r13,0r92,231r87,-228r21,0r-106,276r-5,0r-96,-240","w":412},"X":{"d":"248,0r-111,-123r-112,123r-25,0r125,-137r-123,-136r27,0r109,121r110,-121r25,0r-123,135r125,138r-27,0","w":275},"Y":{"d":"106,-147r-106,-126r27,0r90,110r91,-110r25,0r-106,125r0,148r-21,0r0,-147","w":233},"Z":{"d":"4,-9r211,-246r-200,0r0,-18r229,0r3,10r-211,245r210,0r0,18r-240,0","w":253},"[":{"d":"28,93r0,-369r90,0r0,17r-72,0r0,334r72,0r0,18r-90,0","w":120},"\\":{"d":"93,4r-88,-282r18,0r88,282r-18,0","w":112},"]":{"d":"93,93r-90,0r0,-18r71,0r0,-334r-71,0r0,-17r90,0r0,369","w":120},"^":{"d":"136,-276r84,141r-21,0r-67,-115r-68,115r-20,0r83,-141r9,0","w":264},"_":{"d":"-2,93r0,-21r204,0r0,21r-204,0"},"`":{"d":"61,-205r-63,-64r32,0r43,64r-12,0","w":133},"a":{"d":"119,-18v-28,30,-106,31,-105,-23v1,-46,53,-68,105,-67v3,-36,-5,-60,-41,-58v-23,1,-39,9,-54,22r0,-20v31,-29,114,-30,114,26r0,115v0,6,1,7,6,8v7,-1,18,-10,24,-15v4,25,-23,29,-37,34v-9,-1,-12,-11,-12,-22xm33,-42v0,41,72,33,86,6r0,-57v-38,0,-86,18,-86,51","w":170},"b":{"d":"189,-90v0,79,-96,117,-164,79r0,-262r19,0r0,117v16,-15,42,-29,65,-28v49,0,80,41,80,94xm109,-167v-27,-1,-52,15,-65,33r0,111v55,24,124,-7,124,-68v0,-41,-23,-75,-59,-76","w":203},"c":{"d":"37,-90v0,65,65,91,118,65r0,20v-68,29,-138,-13,-138,-85v0,-70,70,-115,134,-84r0,19v-55,-26,-114,6,-114,65","w":166},"d":{"d":"16,-90v0,-72,84,-120,145,-78r0,-105r19,0r0,273r-19,0r0,-13v-58,43,-145,-1,-145,-77xm161,-145v-40,-42,-132,-13,-124,55v-6,62,81,100,124,56r0,-111","w":203},"e":{"d":"178,-21v-56,53,-162,16,-162,-69v0,-51,32,-94,81,-94v52,1,80,35,81,89r-142,0v-7,75,96,102,142,54r0,20xm97,-165v-29,0,-53,28,-59,55r118,0v-3,-32,-26,-55,-59,-55","w":191},"f":{"d":"133,-249v-33,-18,-83,-5,-76,42r0,27r37,0r0,16r-37,0r0,164r-19,0r0,-164r-34,0r0,-16r34,0v-11,-69,35,-116,95,-88r0,19","w":96},"g":{"d":"128,-164v44,30,18,109,-30,109v-24,5,-45,10,-49,28v3,17,25,18,50,19v42,2,68,9,68,48v0,38,-40,52,-84,52v-42,0,-76,-14,-76,-49v0,-22,25,-40,48,-40v-11,-5,-26,-16,-25,-28v0,-16,20,-29,37,-30v-28,-5,-48,-31,-48,-61v0,-41,34,-63,79,-63r69,0r0,15r-39,0xm133,-116v0,-26,-22,-49,-48,-49v-26,0,-48,23,-48,49v0,26,22,48,48,48v26,0,48,-22,48,-48xm149,41v-2,-49,-122,-41,-124,1v3,46,122,45,124,-1","w":170},"h":{"d":"101,-165v-22,0,-45,19,-57,38r0,127r-19,0r0,-273r19,0r0,124v32,-58,127,-38,127,39r0,110r-19,0v-4,-68,20,-165,-51,-165","w":196},"i":{"d":"28,0r0,-180r19,0r0,180r-19,0xm28,-273r19,0r0,33r-19,0r0,-33","w":75},"j":{"d":"-11,76v28,-3,38,-18,38,-51r0,-205r19,0r0,205v0,42,-15,66,-53,68xm27,-273r19,0r0,33r-19,0r0,-33","w":75},"k":{"d":"43,-273r0,273r-19,0r0,-273r19,0xm156,0r-108,-90r99,-90r25,0r-97,89r110,91r-29,0","w":170},"l":{"d":"28,0r0,-273r19,0r0,273r-19,0","w":75},"m":{"d":"96,-165v-21,-1,-43,20,-53,38r0,127r-19,0r0,-180r19,0r0,30v24,-47,100,-43,116,7v12,-22,35,-41,61,-41v38,0,65,31,64,71r0,113r-19,0v-4,-66,20,-164,-48,-165v-21,0,-43,20,-53,38r0,127r-19,0v-4,-67,20,-163,-49,-165","w":308},"n":{"d":"101,-165v-22,0,-45,19,-57,38r0,127r-19,0r0,-180r19,0r0,31v32,-58,127,-38,127,39r0,110r-19,0v-4,-68,20,-165,-51,-165","w":196},"o":{"d":"108,4v-54,0,-91,-41,-91,-94v0,-54,38,-94,91,-94v53,0,92,41,92,94v0,53,-38,94,-92,94xm108,-14v40,0,72,-36,72,-76v0,-40,-33,-75,-72,-75v-39,0,-71,36,-71,75v0,40,32,76,71,76","w":216},"p":{"d":"187,-90v0,72,-79,118,-143,81r0,102r-19,0r0,-273r19,0r0,10v62,-37,143,4,143,80xm167,-90v0,-60,-74,-96,-123,-61r0,122v49,33,123,5,123,-61","w":203},"q":{"d":"15,-90v0,-74,82,-120,145,-78r0,-12r19,0r0,273r-19,0r0,-105v-62,39,-145,2,-145,-78xm160,-148v-49,-40,-125,-4,-125,66v0,61,81,85,125,51r0,-117","w":203},"r":{"d":"97,-165v-27,5,-40,28,-57,53r0,112r-19,0r0,-180r19,0r0,50v17,-39,70,-78,105,-32r-9,17v-14,-11,-21,-19,-39,-20","w":133},"s":{"d":"17,-137v3,-46,74,-60,107,-31r0,19v-23,-21,-84,-25,-88,12v5,51,97,31,93,92v-3,51,-73,61,-113,33r0,-18v30,20,89,26,95,-17v-7,-48,-98,-31,-94,-90","w":141},"t":{"d":"60,-44v-5,36,42,34,60,19r0,19v-28,21,-79,9,-79,-32r0,-126r-49,0r0,-16r49,0r0,-43v7,-5,7,-16,19,-16r0,59r48,0r0,16r-48,0r0,120","w":120},"u":{"d":"152,-31v-31,59,-127,39,-127,-38r0,-111r19,0v4,68,-20,165,51,165v22,0,46,-19,57,-38r0,-127r19,0r0,180r-19,0r0,-31","w":196},"v":{"d":"20,-180r66,154r66,-154r19,0r-80,183r-12,0r-79,-183r20,0","w":170},"w":{"d":"73,3r-73,-183r20,0r60,151r56,-153r12,0r57,153r60,-151r18,0r-73,183r-12,0r-56,-151r-57,151r-12,0","w":283},"x":{"d":"168,0r-71,-78r-71,78r-24,0r83,-90r-81,-90r25,0r69,76r70,-76r23,0r-81,89r83,91r-25,0","w":191},"y":{"d":"23,-180r65,128r62,-128r19,0r-135,277r-21,0r65,-132r-76,-145r21,0","w":166},"z":{"d":"7,0r-3,-6r121,-156r-110,0r0,-18r139,0r3,6r-121,157r116,0r0,17r-145,0","w":158},"{":{"d":"80,-23v1,43,-9,100,34,98r0,18v-101,16,-8,-161,-94,-173r0,-24v87,1,-15,-177,94,-172r0,17v-42,0,-33,55,-34,98v-2,45,-8,61,-44,69v35,9,43,24,44,69","w":133},"|":{"d":"34,103r0,-404r20,0r0,404r-20,0","w":88},"}":{"d":"114,-80v-88,-1,14,176,-95,173r0,-18v43,1,33,-55,34,-98v1,-45,9,-60,44,-69v-50,-4,-44,-59,-44,-115v0,-32,-7,-50,-34,-52r0,-17v64,-6,53,56,54,115v1,34,10,55,41,57r0,24","w":133},"~":{"d":"80,-141v-20,0,-41,14,-53,25r0,-19v13,-15,32,-26,58,-26v36,0,60,30,98,30v21,0,43,-13,54,-25v4,38,-28,43,-59,44v-37,2,-61,-29,-98,-29","w":264},"\u00a3":{"d":"64,-21v49,-15,111,21,150,-6r0,20v-48,28,-122,-16,-176,10r34,-126r-32,0r0,-18r37,0v16,-67,47,-146,125,-132r10,20v-69,-23,-104,49,-115,112r42,0r0,18r-47,0","w":220},"\u2018":{"d":"48,-227r0,39r-26,0v-2,-38,3,-71,26,-86v2,20,-13,26,-8,47r8,0","w":70},"\u2019":{"d":"22,-235r0,-39r26,0v2,37,-2,71,-26,86v-2,-20,14,-25,8,-47r-8,0","w":70},"\u00a0":{"w":111}}});

// tracking functions
// *************************** LIVE SITE FUNCTIONS ***************************
// track share button
function omnitureTrackShare (linkObj,stPar) {
   _page.metrics.trackFlash({
      "type":"o",
      "url":linkObj,
      "pagename":stOmnipagename+":tell_a_friend:"+stPar,
      "events":"event14,event15"
   });
}
// track AddThis
function omnitureTrackAddthis (linkObj) {
   _page.metrics.trackFlash({
		"events":"event14,event15",
		"eVar3":stOmnipagename + ":addthis",
		"pagename":stOmnipagename + ":addthis",
		"type":"o"
	});
}
// track external link
function omnitureTrackExternal (linkObj,stPar) {
   _page.metrics.trackFlash({
      "type":"o",
      "url":linkObj,
      "pagename":stOmnipagename+":external_link:"+stPar,
      "events":"event14,event15"
   });
};
// user login
function omnitureTrackLogin (linkObj) {
   _page.metrics.trackFlash({
      "type":"o",
      "url":linkObj,
      "pagename":stOmnipagename+":login",
      "eVar13":"D=pageName",
      "events":"event36"
   });
}
// user register
function omnitureTrackRegistration () {
   _page.metrics.trackFlash({
      "type":"o",
      "pagename":stOmnipagename+":login",
      "eVar4":"D=pageName",
      "events":"event11"
   });
}
// buy now
function omnitureTrackBuynow (linkObj) {
   _page.metrics.trackFlash({
      "pagename":stOmnipagename+":buy",
      "type":"o",
      "events":"event21,event24",
      "products":";breastfeeding_electric_set"
   });
}
// add to gift list
function omnitureTrackGiftlist (linkObj,stPar) {
   _page.metrics.trackFlash({
      "pagename":stOmnipagename+":add_to_gift_list",
      "type":"o",
      "events":"event46",
      "eVar25":"D=pageName",
      "products":";"+stPar
   });
}

