// JavaScript Document

$(document).ready(function(){
						   
   $(".email").click(function(){
     $("#emailSubscribe").toggle("slow");
   });
   
   $(".twitter").click(function(){
     $("#twitters").toggle("slow");
   });
   
   $(".scoreCard tr td:nth-child(2), .scoreCard tr td:nth-child(3), tr.total th:nth-child(2), tr.total th:nth-child(3)").addClass("scoreNumber");

   
 });
