$(document).ready(function() {
  $('#content a[href^="http://"]').filter(function() {
    return this.hostname && this.hostname !== location.hostname;
  }).attr('target', '_blank');

  $('a.fancybox').fancybox({
    padding          : 0,
    overlayOpacity  :    0.9,
    overlayColor    :   '#194061'
  });

   //Tags with Paseo
   $('#tags a.view-tags').click(function () {
     if ($('#tags .paseo').is(':hidden')) {
       $('#tags .paseo').slideDown(500);
       $('#tags a.view-tags').addClass('down-arrow');
     } else {
       $('#tags .paseo').slideUp(500);
       $('#tags a.view-tags').removeClass('down-arrow');
     };
   });

   var paseoLength = $('#tags .paseo li').length;

   if (paseoLength < 1) {
     $('#tags').hide();
   };
  
	$('a[href$=pdf]').click(function (e) {
		var googleTrackLink = $(this).attr("href");
		_gaq.push(['_trackPageview',googleTrackLink]);
	});
});
