$(document).ready(function(){



/* Tool Box */



	$('#tool_box a#open_tool_box').click(function(){

	

		if ( $('#tool_box').css('height') == '25px' )

		{

				

			//Open

			$('#tool_box').css('height', '300px');

			

			$('#tool_box #whosonline ul').load('code/whosOnline.php');

			

			$('#tool_box #userCount').load('code/userCount.php');

			

		}

		else

		{

		

			//Close

			$('#tool_box').css('height', '25px');

		}



		return false;

	});



});




