function UnCryptMailto( s )   {        var n = 0;        var r = "";        for( var i = 0; i < s.length; i++)        {            n = s.charCodeAt( i );            if( n >= 8364 )            {                n = 128;            }            r += String.fromCharCode( n - 1 );        }        return r;    }    function linkTo_UnCryptMailto( s )    {        location.href=UnCryptMailto( s );    }

$(document).ready(function() {
 $('.content').hide();

 $('.show').click(function(e) {
  e.preventDefault();
  nextContent = $(this).attr('href');
  if ($(nextContent).is(':visible') != true)
  {
  	$('.content').slideUp(250);
  	setTimeout(function() {$(nextContent).slideDown();}, 250);
  }
 });
 
 $('.start-download').click(function(e) {
  e.preventDefault();
  $('.content').slideUp(250);
  setTimeout(function() {$('#why-donate').slideDown();}, 250);
  $('body').append('<iframe src="' + $(this).attr('href') + '" height="1" width="2" style="display:none" name="downloadframe"></iframe>');
 });

});
