Drupal.locale = { 'pluralFormula': function ($n) { return Number(($n!=1)); }, 'strings': {"":{"Edit":"Editar","An AJAX HTTP error occurred.":"Hubo un error HTTP AJAX.","HTTP Result Code: !status":"C\u00f3digo de Resultado HTTP: !status","An AJAX HTTP request terminated abnormally.":"Una solicitud HTTP de AJAX termin\u00f3 de manera anormal.","Debugging information follows.":"A continuaci\u00f3n se detalla la informaci\u00f3n de depuraci\u00f3n.","Path: !uri":"Ruta: !uri","StatusText: !statusText":"StatusText: !statusText","ResponseText: !responseText":"ResponseText: !responseText","ReadyState: !readyState":"ReadyState: !readyState","Disabled":"Desactivado","Show":"Mostrar","Not published":"No publicado","Remove group":"Eliminar grupo","Automatic alias":"Alias autom\u00e1tico","Alias: @alias":"Alias: @alias","No alias":"Sin alias","Configure":"Configurar","Done":"Hecho","Select all rows in this table":"Seleccionar todas las filas de esta tabla","Deselect all rows in this table":"Quitar la selecci\u00f3n a todas las filas de esta tabla","Please wait...":"Espere, por favor...","Hide":"Ocultar","By @name on @date":"Por @name en @date","By @name":"Por @name","Not in menu":"No est\u00e1 en un men\u00fa","New revision":"Revisi\u00f3n nueva","Drag to re-order":"Arrastre para reordenar","Changes made in this table will not be saved until the form is submitted.":"Los cambios realizados en esta tabla no se guardar\u00e1n hasta que se env\u00ede el formulario","The changes to these blocks will not be saved until the \u003cem\u003eSave blocks\u003c\/em\u003e button is clicked.":"Los cambios sobre estos bloques no se guardar\u00e1n hasta que no pulse el bot\u00f3n \u003cem\u003eGuardar bloques\u003c\/em\u003e.","Show shortcuts":"Mostrar atajos","This permission is inherited from the authenticated user role.":"Este permiso se hereda del rol de usuario registrado.","No revision":"Sin revisi\u00f3n","@number comments per page":"@number comentarios por p\u00e1gina","Requires a title":"Necesita un t\u00edtulo","Not restricted":"Sin restricci\u00f3n","(active tab)":"(solapa activa)","Not customizable":"No personalizable","Restricted to certain pages":"Restringido a algunas p\u00e1ginas","The block cannot be placed in this region.":"El bloque no se puede colocar en esta regi\u00f3n.","Customize dashboard":"Personalizar panel de control","Hide summary":"Ocultar resumen","Edit summary":"Editar resumen","Don't display post information":"No mostrar informaci\u00f3n del env\u00edo","Re-order rows by numerical weight instead of dragging.":"Reordenar las filas por peso num\u00e9rico en lugar de arrastrar.","Show row weights":"Mostrar pesos de la fila","Hide row weights":"Ocultar pesos de la fila","Searching for matches...":"Buscando coincidencias","Hide shortcuts":"Ocultar atajos","Autocomplete popup":"Ventana emergente con autocompletado","The selected file %filename cannot be uploaded. Only files with the following extensions are allowed: %extensions.":"El archivo seleccionado %filename no puede ser subido. Solo se permiten archivos con las siguientes extensiones: %extensions."}} };;

/*
 * Superfish v1.4.8 - jQuery menu widget
 * Copyright (c) 2008 Joel Birch
 *
 * Dual licensed under the MIT and GPL licenses:
 * 	http://www.opensource.org/licenses/mit-license.php
 * 	http://www.gnu.org/licenses/gpl.html
 *
 * CHANGELOG: http://users.tpg.com.au/j_birch/plugins/superfish/changelog.txt
 */

;(function($){
	$.fn.superfish = function(op){

		var sf = $.fn.superfish,
			c = sf.c,
			$arrow = $(['<span class="',c.arrowClass,'"> &#187;</span>'].join('')),
			over = function(){
				var $$ = $(this), menu = getMenu($$);
				clearTimeout(menu.sfTimer);
				$$.showSuperfishUl().siblings().hideSuperfishUl();
			},
			out = function(){
				var $$ = $(this), menu = getMenu($$), o = sf.op;
				clearTimeout(menu.sfTimer);
				menu.sfTimer=setTimeout(function(){
					o.retainPath=($.inArray($$[0],o.$path)>-1);
					$$.hideSuperfishUl();
					if (o.$path.length && $$.parents(['li.',o.hoverClass].join('')).length<1){over.call(o.$path);}
				},o.delay);	
			},
			getMenu = function($menu){
				var menu = $menu.parents(['ul.',c.menuClass,':first'].join(''))[0];
				sf.op = sf.o[menu.serial];
				return menu;
			},
			addArrow = function($a){ $a.addClass(c.anchorClass).append($arrow.clone()); };
			
		return this.each(function() {
			var s = this.serial = sf.o.length;
			var o = $.extend({},sf.defaults,op);
			o.$path = $('li.'+o.pathClass,this).slice(0,o.pathLevels).each(function(){
				$(this).addClass([o.hoverClass,c.bcClass].join(' '))
					.filter('li:has(ul)').removeClass(o.pathClass);
			});
			sf.o[s] = sf.op = o;
			
			$('li:has(ul)',this)[($.fn.hoverIntent && !o.disableHI) ? 'hoverIntent' : 'hover'](over,out).each(function() {
				if (o.autoArrows) addArrow( $('>a:first-child',this) );
			})
			.not('.'+c.bcClass)
				.hideSuperfishUl();
			
			var $a = $('a',this);
			$a.each(function(i){
				var $li = $a.eq(i).parents('li');
				$a.eq(i).focus(function(){over.call($li);}).blur(function(){out.call($li);});
			});
			o.onInit.call(this);
			
		}).each(function() {
			var menuClasses = [c.menuClass];
			if (sf.op.dropShadows  && !($.browser.msie && $.browser.version < 7)) menuClasses.push(c.shadowClass);
			$(this).addClass(menuClasses.join(' '));
		});
	};

	var sf = $.fn.superfish;
	sf.o = [];
	sf.op = {};
	sf.IE7fix = function(){
		var o = sf.op;
		if ($.browser.msie && $.browser.version > 6 && o.dropShadows && o.animation.opacity!=undefined)
			this.toggleClass(sf.c.shadowClass+'-off');
		};
	sf.c = {
		bcClass     : 'sf-breadcrumb',
		menuClass   : 'sf-js-enabled',
		anchorClass : 'sf-with-ul',
		arrowClass  : 'sf-sub-indicator',
		shadowClass : 'sf-shadow'
	};
	sf.defaults = {
		hoverClass	: 'sfHover',
		pathClass	: 'overideThisToUse',
		pathLevels	: 1,
		delay		: 800,
		animation	: {opacity:'show'},
		speed		: 'normal',
		autoArrows	: true,
		dropShadows : true,
		disableHI	: false,		// true disables hoverIntent detection
		onInit		: function(){}, // callback functions
		onBeforeShow: function(){},
		onShow		: function(){},
		onHide		: function(){}
	};
	$.fn.extend({
		hideSuperfishUl : function(){
			var o = sf.op,
				not = (o.retainPath===true) ? o.$path : '';
			o.retainPath = false;
			var $ul = $(['li.',o.hoverClass].join(''),this).add(this).not(not).removeClass(o.hoverClass)
					.find('>ul').hide().css('visibility','hidden');
			o.onHide.call($ul);
			return this;
		},
		showSuperfishUl : function(){
			var o = sf.op,
				sh = sf.c.shadowClass+'-off',
				$ul = this.addClass(o.hoverClass)
					.find('>ul:hidden').css('visibility','visible');
			sf.IE7fix.call($ul);
			o.onBeforeShow.call($ul);
			$ul.animate(o.animation,o.speed,function(){ sf.IE7fix.call($ul); o.onShow.call($ul); });
			return this;
		}
	});

})(jQuery);
;
/* Copyright (c) 2006 Brandon Aaron (http://brandonaaron.net)
 * Dual licensed under the MIT (http://www.opensource.org/licenses/mit-license.php) 
 * and GPL (http://www.opensource.org/licenses/gpl-license.php) licenses.
 *
 * $LastChangedDate: 2007-06-19 20:25:28 -0500 (Tue, 19 Jun 2007) $
 * $Rev: 2111 $
 *
 * Version 2.1
 */
(function($){$.fn.bgIframe=$.fn.bgiframe=function(s){if($.browser.msie&&parseInt($.browser.version)<=6){s=$.extend({top:'auto',left:'auto',width:'auto',height:'auto',opacity:true,src:'javascript:false;'},s||{});var prop=function(n){return n&&n.constructor==Number?n+'px':n;},html='<iframe class="bgiframe"frameborder="0"tabindex="-1"src="'+s.src+'"'+'style="display:block;position:absolute;z-index:-1;'+(s.opacity!==false?'filter:Alpha(Opacity=\'0\');':'')+'top:'+(s.top=='auto'?'expression(((parseInt(this.parentNode.currentStyle.borderTopWidth)||0)*-1)+\'px\')':prop(s.top))+';'+'left:'+(s.left=='auto'?'expression(((parseInt(this.parentNode.currentStyle.borderLeftWidth)||0)*-1)+\'px\')':prop(s.left))+';'+'width:'+(s.width=='auto'?'expression(this.parentNode.offsetWidth+\'px\')':prop(s.width))+';'+'height:'+(s.height=='auto'?'expression(this.parentNode.offsetHeight+\'px\')':prop(s.height))+';'+'"/>';return this.each(function(){if($('> iframe.bgiframe',this).length==0)this.insertBefore(document.createElement(html),this.firstChild);});}return this;};if(!$.browser.version)$.browser.version=navigator.userAgent.toLowerCase().match(/.+(?:rv|it|ra|ie)[\/: ]([\d.]+)/)[1];})(jQuery);;
﻿/**
* hoverIntent r5 // 2007.03.27 // jQuery 1.1.2+
* <http://cherne.net/brian/resources/jquery.hoverIntent.html>
* 
* @param  f  onMouseOver function || An object with configuration options
* @param  g  onMouseOut function  || Nothing (use configuration options object)
* @author    Brian Cherne <brian@cherne.net>
*/
(function($){$.fn.hoverIntent=function(f,g){var cfg={sensitivity:7,interval:100,timeout:0};cfg=$.extend(cfg,g?{over:f,out:g}:f);var cX,cY,pX,pY;var track=function(ev){cX=ev.pageX;cY=ev.pageY;};var compare=function(ev,ob){ob.hoverIntent_t=clearTimeout(ob.hoverIntent_t);if((Math.abs(pX-cX)+Math.abs(pY-cY))<cfg.sensitivity){$(ob).unbind("mousemove",track);ob.hoverIntent_s=1;return cfg.over.apply(ob,[ev]);}else{pX=cX;pY=cY;ob.hoverIntent_t=setTimeout(function(){compare(ev,ob);},cfg.interval);}};var delay=function(ev,ob){ob.hoverIntent_t=clearTimeout(ob.hoverIntent_t);ob.hoverIntent_s=0;return cfg.out.apply(ob,[ev]);};var handleHover=function(e){var p=(e.type=="mouseover"?e.fromElement:e.toElement)||e.relatedTarget;while(p&&p!=this){try{p=p.parentNode;}catch(e){p=this;}}if(p==this){return false;}var ev=jQuery.extend({},e);var ob=this;if(ob.hoverIntent_t){ob.hoverIntent_t=clearTimeout(ob.hoverIntent_t);}if(e.type=="mouseover"){pX=ev.pageX;pY=ev.pageY;$(ob).bind("mousemove",track);if(ob.hoverIntent_s!=1){ob.hoverIntent_t=setTimeout(function(){compare(ev,ob);},cfg.interval);}}else{$(ob).unbind("mousemove",track);if(ob.hoverIntent_s==1){ob.hoverIntent_t=setTimeout(function(){delay(ev,ob);},cfg.timeout);}}};return this.mouseover(handleHover).mouseout(handleHover);};})(jQuery);;

// This uses Superfish 1.4.8
// (http://users.tpg.com.au/j_birch/plugins/superfish)

// Add Superfish to all Nice menus with some basic options.
(function ($) {
  $(document).ready(function() {
    $('ul.nice-menu').superfish({
      // Apply a generic hover class.
      hoverClass: 'over',
      // Disable generation of arrow mark-up.
      autoArrows: false,
      // Disable drop shadows.
      dropShadows: false,
      // Mouse delay.
      delay: Drupal.settings.nice_menus_options.delay,
      // Animation speed.
      speed: Drupal.settings.nice_menus_options.speed
    // Add in Brandon Aaron’s bgIframe plugin for IE select issues.
    // http://plugins.jquery.com/node/46/release
    }).find('ul').bgIframe({opacity:false});
    $('ul.nice-menu ul').css('display', 'none');
  });
})(jQuery);
;
/*
 * jScroller2 1.35 - Scroller Script
 *
 * Markus Bordihn (markusbordihn.de)
 *
 */

eval(function(p,a,c,k,e,r){e=function(c){return(c<a?'':e(parseInt(c/a)))+((c=c%a)>35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--)r[e(c)]=k[c]||e(c);k=[function(e){return r[e]}];e=function(){return'\\w+'};c=1};while(c--)if(k[c])p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c]);return p}('H["k"]=28 1X(),k.m=[],k.1f=0,k.19=0;k.I=A(a,b,c){l(a&&b&&c)(H.1u)?a.1u("23"+b,c):a.21(b,c,1p)};k.Y=A(a,b){l(a&&b){q c=0,r=1,X=0,19=0,u=0,Z=0,o=a,R=o.O.M(\' \'),t=a.1d,s=1r,1q=1r,1a=1r;l(t.O.T(\'k\')>=0)t=t.1d;l(t){t.n.1n=\'1W\';t.n.1V=\'1T\';q d=t.1A(\'1z\');K(q i=0;i<d.P;i++){q e=d[i].O.M(\' \');l(k.D(e,\'1S\'+b+\'1i\'))s=d[i]}l(o){o.n.1n=\'1w\';o.n.N=0;o.n.v=0;18(b){w"J":o.n.1b=t.z+\'p\';o.n.N=(o.B*-1)+t.B+\'p\';x;w"15":o.n.1b=t.z+\'p\';x;w"17":o.n.1c=t.B+\'p\';o.n.v=(o.z*-1)+t.z+\'p\';x;w"v":o.n.1c=t.B+\'p\';x}l(s){s.n.1n=\'1w\';1q=s.z;1a=s.B;18(b){w"J":s.n.N=1a*-1+\'p\';s.n.v=0;s.n.1b=t.z+\'p\';x;w"15":s.n.N=o.B+\'p\';s.n.v=0;s.n.1b=t.z+\'p\';x;w"v":s.n.N=0;s.n.v=o.z+\'p\';s.n.1c=t.B+\'p\';x;w"17":s.n.N=0;s.n.v=o.z*-1+\'p\';s.n.1c=t.B+\'p\';x}}}l(1t=k.D(R,\'1H-\',1)){r=16(1t.M(\'1H-\')[1]||10)/10;l(H.1u&&r<1)r=1}l(1t=k.D(R,\'22\'))k.19=1;l(k.D(R,\'20\'))u=1;l(k.D(R,\'1Z\'))Z=1;l(1G=k.D(R,\'1F-\',1)){X=1;k.1f=1;c=1G.M(\'1F-\')[1]*1Y}l(k.D(R,\'1o\')){k.I(o,\'1D\',k.1m);k.I(o,\'1C\',k.1l);l(s){k.I(s,\'1D\',k.1m);k.I(s,\'1C\',k.1l)}}k.m.1U([t,t.B,t.z,o,o.B,o.z,s,1a,1q,b,r,X,c,u,Z])}}};k.1B=A(){K(q i=0;i<k.m.P;i++){q a=k.m[i][0],L=k.m[i][1],E=k.m[i][2],o=k.m[i][3],G=k.m[i][4],F=k.m[i][5],Q=k.m[i][6],1k=k.m[i][7],1j=k.m[i][8],C=k.m[i][9],r=k.m[i][10],X=k.m[i][11],1y=k.m[i][12],u=k.m[i][13],Z=k.m[i][14];l(!X&&!1y){l(Z){G=k.m[i][4]=o.B;F=k.m[i][5]=o.z;l(Q){1k=k.m[i][7]=Q.B;1j=k.m[i][8]=Q.z}}18(C){w\'J\':w\'15\':q b=16(o.n.N.M(\'p\')[0]);l(C==\'J\'){(u==2)?b-=r:b+=r}y{(u==2)?b+=r:b-=r}l(Q&&!u){b=k.1h(C,\'N\',b,Q,G,L,1k,r,u)}y{l(u){q c=(C==\'J\')?1:2,S=(C==\'J\')?2:1;l(u==c&&((G>L&&b+r>0)||(G<L&&b+G+r>L)))k.m[i][13]=S;l(u==S&&((G>L&&b+G<L+r)||(G<L&&b<0)))k.m[i][13]=c}y{l(C==\'J\'){l(b>E)b=(G)*-1}y{l(b<G*-1)b=L}}}o.n.N=b+\'p\';x;w\'v\':w\'17\':q d=16(o.n.v.M(\'p\')[0]);l(C==\'v\'){(u==2)?d+=r:d-=r}y{(u==2)?d-=r:d+=r}l(Q&&!u){d=k.1h(C,\'v\',d,Q,F,E,1j,r,u)}y{l(u){q c=(C==\'v\')?1:2,S=(C==\'v\')?2:1;l(u==S&&((F>E&&d+r>0)||(F<E&&d+F+r>E)))k.m[i][13]=c;l(u==c&&((F>E&&d+F<E+r)||(F<E&&d-r<0)))k.m[i][13]=S}y{l(C==\'v\'){l(d<F*-1)d=E}y{l(d>E)d=(F)*-1}}}o.n.v=d+\'p\';x}}}};k.1h=A(a,b,c,d,e,f,g,h,i){18(a){w\'J\':w\'17\':q j=16(d.n[b].M(\'p\')[0])+h;l(c>0&&c<=f)d.n[b]=c-g+\'p\';l(j+g>=f&&j<=f+h){d.n[b]=j+\'p\';c=j+e*-1}1g c;x;w\'15\':w\'v\':q j=16(d.n[b].M(\'p\')[0])-h;l(c+e<=f)d.n[b]=c+e+\'p\';l(j+g<=f&&j+g+h>=0){d.n[b]=j+\'p\';c=j+g}1g c;x}};k.W=A(e){l(!k.V){k.V=H.1R(k.1B,(k.1Q||1P))}};k.1x=A(e){l(k.V){H.1O(k.V);k.V=1p}};k.1v=A(e){q a=1N.1A(\'1z\');K(q i=0;i<a.P;i++){q b=a[i].O.M(\' \');l(k.D(b,\'1M\')){k.Y(a[i],\'J\')}y l(k.D(b,\'1L\')){k.Y(a[i],\'15\')}y l(k.D(b,\'1K\')){k.Y(a[i],\'v\')}y l(k.D(b,\'1J\')){k.Y(a[i],\'17\')}}l(k.m.P>0){k.W();l(k.1f){K(q i=0;i<k.m.P;i++){l(k.m[i][12]>0){H.1I("k.1E("+k.m[i][12]+",0)",k.m[i][12])}}}l(k.19==0){k.I(H,\'27\',k.W);k.I(H,\'26\',k.1x);k.I(H,\'25\',k.W);k.I(H,\'24\',k.W)}}};k.1m=A(a){l(a.U||a.1e){q b=(a.U)?a.U:a.1e;K(q i=0;i<5;i++){l(b.O.T(\'1o\')<0&&b.O.T(\'1i\')<0){b=b.1d}y{x}}k.1s(b,1)}};k.1l=A(a){l(a.U||a.1e){q b=(a.U)?a.U:a.1e;K(q i=0;i<5;i++){l(b.O.T(\'1o\')<0&&b.O.T(\'1i\')<0){b=b.1d}y{x}}k.1s(b,0)}};k.1E=A(a){l(a>0){K(q i=0;i<k.m.P;i++){l(a==k.m[i][12]){k.m[i][12]=0;k.m[i][11]=0}}}};k.1s=A(a,b){l(a&&b>=0){K(q i=0;i<k.m.P;i++){l(a==k.m[i][3]||a==k.m[i][6]){k.m[i][11]=b}}}};k.D=A(a,b,c){l(a&&b){q d=1p;K(q i=0;i<a.P;i++){l(c){l(a[i].T(b)>=0)d=a[i]}y{l(a[i]==b)d=a[i]}}}1g d};k.I(H,\'29\',k.1v);',62,134,'||||||||||||||||||||jscroller2|if|obj|style|child_div|px|var|speed|child_endless|parent_div|alternate|left|case|break|else|clientWidth|function|clientHeight|direction|check_array|parent_div_width|child_div_width|child_div_height|window|set_eventListener|down|for|parent_div_height|split|top|className|length|endless_div|child_div_classNames|alternate_helper_2|indexOf|target|timer|start_jscroller|pause|add_scroller|dynamic||||||up|parseFloat|right|switch|ileave|child_endless_Height|width|height|parentNode|srcElement|delayer|return|check_endless|_endless|endless_div_width|endless_div_height|start_sel_jscroller|stop_sel_jscroller|position|jscroller2_mousemove|false|child_endless_Width|null|update_sel_jscroller|dspeed|attachEvent|set_jscroller2_events|absolute|stop_jscroller|delay|div|getElementsByTagName|init_jscroller2|mouseout|mouseover|update_delayer|jscroller2_delay|ddelay|jscroller2_speed|setTimeout|jscroller2_right|jscroller2_left|jscroller2_up|jscroller2_down|document|clearInterval|150|refreshtime|setInterval|jscroller2_|hidden|push|overflow|relative|Object|1000|jscroller2_dynamic|jscroller2_alternate|addEventListener|jscroller2_ignoreleave|on|scroll|resize|blur|focus|new|load'.split('|'),0,{}));
(function ($) {

$(document).ready(function() {

  // Accepts a string; returns the string with regex metacharacters escaped. The returned string
  // can safely be used at any point within a regex to match the provided literal string. Escaped
  // characters are [ ] { } ( ) * + ? - . , \ ^ $ # and whitespace. The character | is excluded
  // in this function as it's used to separate the domains names.
  RegExp.escapeDomains = function(text) {
    return (text) ? text.replace(/[-[\]{}()*+?.,\\^$#\s]/g, "\\$&") : '';
  }

  // Attach onclick event to document only and catch clicks on all elements.
  $(document.body).click(function(event) {
    // Catch the closest surrounding link of a clicked element.
    $(event.target).closest("a,area").each(function() {

      var ga = Drupal.settings.googleanalytics;
      // Expression to check for absolute internal links.
      var isInternal = new RegExp("^(https?):\/\/" + window.location.host, "i");
      // Expression to check for special links like gotwo.module /go/* links.
      var isInternalSpecial = new RegExp("(\/go\/.*)$", "i");
      // Expression to check for download links.
      var isDownload = new RegExp("\\.(" + ga.trackDownloadExtensions + ")$", "i");
      // Expression to check for the sites cross domains.
      var isCrossDomain = new RegExp("^(https?|ftp|news|nntp|telnet|irc|ssh|sftp|webcal):\/\/.*(" + RegExp.escapeDomains(ga.trackCrossDomains) + ")", "i");

      // Is the clicked URL internal?
      if (isInternal.test(this.href)) {
        // Is download tracking activated and the file extension configured for download tracking?
        if (ga.trackDownload && isDownload.test(this.href)) {
          // Download link clicked.
          var extension = isDownload.exec(this.href);
          _gaq.push(["_trackEvent", "Downloads", extension[1].toUpperCase(), this.href.replace(isInternal, '')]);
        }
        else if (isInternalSpecial.test(this.href)) {
          // Keep the internal URL for Google Analytics website overlay intact.
          _gaq.push(["_trackPageview", this.href.replace(isInternal, '')]);
        }
      }
      else {
        if (ga.trackMailto && $(this).is("a[href^=mailto:],area[href^=mailto:]")) {
          // Mailto link clicked.
          _gaq.push(["_trackEvent", "Mails", "Click", this.href.substring(7)]);
        }
        else if (ga.trackOutbound && this.href) {
          if (ga.trackDomainMode == 2 && isCrossDomain.test(this.href)) {
            // Top-level cross domain clicked. document.location is handled by _link internally.
            _gaq.push(["_link", this.href]);
          }
          else if (ga.trackOutboundAsPageview) {
            // Track all external links as page views after URL cleanup.
            // Currently required, if click should be tracked as goal.
            _gaq.push(["_trackPageview", '/outbound/' + this.href.replace(/^(https?|ftp|news|nntp|telnet|irc|ssh|sftp|webcal):\/\//i, '').split('/').join('--')]);
          }
          else {
            // External link clicked.
            _gaq.push(["_trackEvent", "Outbound links", "Click", this.href]);
          }
        }
      }
    });
  });
});

})(jQuery);
;

