Facebook
From Snot, 3 Years ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 84
  1. $(document).ready(function(){
  2.         $('#char1').click(function(){
  3.         window.open("http://profiles.rphaven.com/Endes");
  4.    });
  5.     $('#char2').click(function() {
  6.     window.open("http://profiles.rphaven.com/Swish%20Swish");
  7.   });
  8.   $('#char3').click(function() {
  9.     window.open("http://profiles.rphaven.com/Mouthy");
  10.   });
  11.   $('#char4').click(function() {
  12.     window.open("http://profiles.rphaven.com/Mette");
  13.   });
  14.   $('#char5').click(function() {
  15.     window.open("http://profiles.rphaven.com/S%20l%20u%20t");
  16.     });
  17.   $('#char6').click(function() {
  18.     window.open("http://profiles.rphaven.com/Bacon%20Bit");
  19.   });
  20.     $(".one").click(function(){
  21.     $(".stat").fadeIn("slow");
  22.     $(".trivia, .bio, .bro").fadeOut("slow");
  23.   });
  24.     $(".two").click(function(){
  25.     $(".trivia").fadeIn("slow");
  26.     $(".stat, .bio, .bro").fadeOut("slow");
  27.   });
  28.     $(".three").click(function(){
  29.     $(".bio").fadeIn("slow");
  30.     $(".trivia, .stat, .bro").fadeOut("slow");
  31.   });
  32.     $(".four").click(function(){
  33.     $(".bro").fadeIn("slow");
  34.     $(".trivia, .bio, .stat").fadeOut("slow");
  35.   });
  36.   });