/****************************************
GLOBAL.JS
- This file is used to store functions that are called on everypage
****************************************/


/****************************************
$().ready()
- this function is triggered when all page elements have been loaded
and are ready to be manipulated. just like onload="init()"
****************************************/
$().ready(function(){
/*
Displays the secret code div when the secret code menu link is clicked. Hides when the close button is clicked.
*/
    $("#secret-code-link").click(function() {
       $("#cs-secret-code").css("display", "inline"); 
   });
	$("#cs-secret-close").click(function() {
	  $("#cs-secret-code").css("display", "none"); 
	}); 

});

