// 9rules.com homepage Javascript Functions
// Author: Colin D. Devroe
// http://9rules.com/ - copyright


function swapTab(t) {
	var snapshot = document.getElementById('snapshot_box');

	
	var student = document.getElementById('snapshot_student');
		var staff = document.getElementById('snapshot_staff');
		var orgunit = document.getElementById('snapshot_orgunit');
			var affiliated = document.getElementById('snapshot_affiliated');
				var alumni = document.getElementById('snapshot_alumni');
				var external = document.getElementById('snapshot_external');
	
 if (t == 'student') {
		snapshot.className = 'student';

		
		staff.style.display = "none";
		orgunit.style.display = "none";
		affiliated.style.display = "none";
		alumni.style.display = "none";
		external.style.display = "none";
		
		// activate
		student.style.display = "block";
		
	} else if (t == 'staff') {
		snapshot.className = 'staff';
		
  	
		student.style.display = "none";
		orgunit.style.display = "none";
		affiliated.style.display = "none";
		alumni.style.display = "none";
		external.style.display = "none";
		
		// activate
		staff.style.display = "block";
		
	} 	
	 else if (t == 'orgunit') {
		snapshot.className = 'orgunit';
		

		student.style.display = "none";
		staff.style.display = "none";
		affiliated.style.display = "none";
		alumni.style.display = "none";
		external.style.display = "none";
		
		// activate
		orgunit.style.display = "block";
		
	} 	
	 else if (t == 'affiliated') {
		snapshot.className = 'affiliated';
		
  	
		student.style.display = "none";
		staff.style.display = "none";
		orgunit.style.display = "none";
		alumni.style.display = "none";
		external.style.display = "none";
		
		// activate
		affiliated.style.display = "block";
		
	} 	
	 else if (t == 'alumni') {
		snapshot.className = 'alumni';
		
  	
		student.style.display = "none";
		staff.style.display = "none";
		orgunit.style.display = "none";
		affiliated.style.display = "none";
		external.style.display = "none";
		
		// activate
		alumni.style.display = "block";
		
	} 	
	 else if (t == 'external') {
		snapshot.className = 'external';

		student.style.display = "none";
		staff.style.display = "none";
		orgunit.style.display = "none";
		affiliated.style.display = "none";
		alumni.style.display = "none";
		
		
		// activate
		external.style.display = "block";
		
	}

}



