( function($) { $(document).ready(function(){ $("#registrationbackground").fadeIn("slow"); $("#registrationcontent").fadeIn("slow"); $("#registrationbackground").click(function(){closeRegistrationWindow();}); $(document).keypress(function(e){ if(e.keyCode==27){ closeRegistrationWindow(); } });}); } ) ( jQuery ); function  closeRegistrationWindow() { (function($) { $("#registrationbackground").fadeOut("slow"); $("#registrationcontent").fadeOut("slow");  } ) ( jQuery ); }
