$(document).ready(function(){
    $("#answer").toggle();

    
    var title1 = ['Web','Internet','Client-Side','Interactive','Front-End','Information','Super','General'];
    var title2 = ['Code','Interaction','General','Development','Information','Technology','Media'];
    var title3 = ['Coder','Developer','Producer','Programmer','Specialist','Practitioner','Technologist','Lacky','Geek','Boy','Savant','Craftsman']
    
 
    $("a").click(
      function(event){
         event.preventDefault();
         $("#answer").toggle();
         var randnum1 = Math.floor(Math.random()*8);
         var randnum2 = Math.floor(Math.random()*7);
         var randnum3 = Math.floor(Math.random()*12);
         $("#answer").html( title1[randnum1] + " " + title2[randnum2] + " " + title3[randnum3] + "<br />" );
         $("#answer").show("slow");
      }
    );

});


