$(document).ready(function(){
	//var toggle_on = '0 -35px;';
	//var toggle_off = '0 5px;';

	//$('.staff h3').toggle(function(){
			//$(this).next().slideToggle().end().css('background-position',toggle_on);
		//}, function(){
			//$(this).next().slideToggle().end().css('background-position',toggle_off);
	//});

	$('.staff h3').click(function(){
		$(this).next().slideToggle('fast').end().toggleClass('arrow_left').toggleClass('arrow_down');
	});

	//$('.staff h3').click(function(){
		//if ($(this).css('background-position').is(toggle_on)) { 
			//$(this).next().toggle().end().css('background-position',toggle_on);
		//}
		//if ($(this).css('background-position').is(toggle_off)) { 
			//$(this).next().toggle().end().css('background-position',toggle_on);
		//}
	//});
	
	$('#button_expand_collapse').toggle(function(){
  		$(this).html('collapse all names');
		//$('.staff').find('div:hidden').show().end().find('h3').css('background-position',toggle_on);
		$('.staff').find('div:hidden').show().end().find('h3').removeClass('arrow_left').addClass('arrow_down');
	},function(){
  		$(this).html('expand all names');
		//$('.staff').find('div:visible').hide().end().find('h3').css('background-position',toggle_off);
		$('.staff').find('div:visible').hide().end().find('h3').removeClass('arrow_down').addClass('arrow_left');
	});
});
