$(document).ready(function() {	// Begin actual code			$('.instructor-link').toggle(function(){										  				var toLoad = $(this).attr('href')+' #instructor-box-div';				$('#instructor-goods').hide('fast',loadContent);				// $('#load').remove();				// $('#wrapper').append('<span id="load">LOADING...</span>');				// $('#load').fadeIn('normal');				// window.location.hash = $(this).attr('href').substr(0,$(this).attr('href').length-5);				function loadContent() {					$('#instructor-goods').load(toLoad,'',showNewContent())				}				function showNewContent() {					$('#instructor-goods').show('normal',hideLoader());				}				function hideLoader() {					$('#load').fadeOut('normal');				}				return false;								}, 								function () {				$('#instructor-goods').hide('fast');			});				/* ENGINE FOR YELLOW CATEGORY SLIDER... TURNED OFF AT JACOB'S REQUEST				$('#cat-toggle-target').click(function(){			$('.category-list').toggle('normal');			});					*/	// End actual code	});/* Outakes:	$('#instructor_name').toggle(function() {							$('#instructor_goods').load("/ajax/", {section: 'instructors', form: 'instructor_box', id: '11', action: 'article'}, function () {					$('#instructor_goods').slideDown('medium');				});			},						function () {				$('#instructor_goods').slideUp('medium');						});		// Get the value of the tab link, and display tbody		$('.instructor-name').click(function()			{// Toggle showing instructor info				$('.instructor-info-box').slideToggle("medium");							}		);		$('#instructor_name').click(function() {							$("#instructor_goods").load("/ajax/", {section: 'instructors', form: 'instructor_box', id: '11', action: 'article'}, function () 								{									$('#instructor_goods').slideToggle('medium');					});			});*/