if (document.images) {
  pic1= new Image(574,568);
  pic1.src="images/sprites.gif";
  pic2= new Image(229,274);
  pic2.src="images/outfits.gif";
}

jQuery.event.special.tripleclick={setup:function(data,namespaces){var elem=this,$elem=jQuery(elem);$elem.bind('click',jQuery.event.special.tripleclick.handler);},teardown:function(namespaces){var elem=this,$elem=jQuery(elem);$elem.unbind('click',jQuery.event.special.tripleclick.handler);},handler:function(event){var elem=this,$elem=jQuery(elem),clicks=$elem.data('clicks')||0;clicks+=1;if(clicks===3){clicks=0;event.type="tripleclick";jQuery.event.handle.apply(this,arguments)}
$elem.data('clicks',clicks);}};jQuery(function($){$('.buckle').bind('tripleclick',function(){$('outfit').toggleClass('naked');});});/* */
(function(jQuery){jQuery.fn.bullshitFunction=function(o){var options=jQuery.extend({callback:function(){}},o);var key_accum=[];var match=options.watchFor;$(document).keyup(function(e){len=key_accum.push(e.keyCode?e.keyCode:e.charCode);if(len>match.length)key_accum.shift();if(key_accum.join('-')==match.join('-')){key_accum=[];if(options.callback){options.callback($(this))}}})}})(jQuery);$(document).ready(function(){$('body').bullshitFunction({watchFor:[52,49,50,54],callback:function(){location.href='/sonic'}});});

// ALL THE CODE BELLOW WAS REWRITTEN BY VIVIEN LEROY, BECAUSE HE FUCKING ROCKS. ~ http://fantattitude.me/

$(document).ready(function() {
  $('content').addClass('first');
  $('.answer1').click(function() {
    $('content').addClass('choice1');
  });
  $('.answer2').click(function() {
    $('content').addClass('choice2');
  });
  $('.answer3').click(function() {
    $('content').addClass('choice3');
  });
  $('.back').click(function() {
    $('content').removeClass('choice1 choice2 choice3');
  });
  $('.toContact, a.copyright').click(function() {
    $('content').removeClass('choice1').addClass('choice3');
    return false;
  });
  $('a.copyright').hover(function() {
    $('.dirtyHarry').toggleClass('animate');
  });
  $('a.download').dblclick(function() {
     location.href='http://ha.reesun.me/=/ObiWallpapers/404-ObiWallpapers.zip'
  });
});