// JavaScript Document
 	 jQuery(document).ready(function($) {
 		  
// FaceBox
   $('a[rel*=facebox]').facebox()

// Active Page Nav

	 $(function(){
	   var path = location.pathname.substring(1);
	   if ( path )
		 $('#subNav a[@href$="' + path + '"]').attr('class', 'subActive');
	 });
// Faux Login Error Handling
	 $("#regSubmit").click(function(){
		   $(".loginErrors").fadeIn("normal");
		   return false;
		 }, function(){
	  });

// Chat window
	$("#chatLink").click(function(){ 
			$('#chatWrapper').show();
		}, function(){
	  });
	  
	$("#chatIcon").click(function(){ 
			$('#chatWrapper').show();
		}, function(){
	  });
	  
	$("#closeButton").click(function(){ 
			$('#chatWrapper').hide();
		}, function(){
	  });

});
	