// remap jQuery to $
$(function(){
	
	$('#slideshow img:gt(0)').hide();  
	setInterval(function(){  
		$('#slideshow :first-child').fadeOut()  
		.next('img').fadeIn()  
		.end().appendTo('#slideshow');}, 5000);  
	


	$('.about-sidebar').html('<h1>Staff Bios</h1><p>Click on a name to the left to view staff bios.</p>');
	
	
	$('.parents-sidebar').load('tuition');
	
	$('#support-us').load('support-us');


	$('#staff a').click(function(e) {
		var link = $(this).attr('rel');
		$('.about-sidebar').load(link);
		$('body,html').animate({
				scrollTop: 0
			}, 800);
		return false;
	});
	


});







