/**
 * Shows the staff profile, when you click on the person  
 */ 

var ProfileView = {
	
  init: function() 
  { 
	$('#team-photo a').click(function()
	{
		var Name = $(this).attr('rel');
		
    	$('div.staff_profile').fadeOut(750);
    	$('div#'+ Name + '_profile').fadeIn(750);
    	
		return false;
	});
  }
  
};
$(document).ready(ProfileView.init);



/**
 * sets tags for javascript dependant behaviour
 */ 

var PageSetup = {
	
  init: function() 
  { 
  	
  	$('.auto-unhide').show();
  	
	$('div.staff_profile').addClass('javascript_enabled');
	$('.staff_profile div.extra').show();
  }
  
};
$(document).ready(PageSetup.init);
