function displayFacutlyDetails(id) {
	var currentState = $(id).css("display");
	if (currentState == "none") {
		$(id).show("normal");
	} else {
		$(id).hide("normal");
		
	}
}

$(document).ready( function() {

	//Generate popup of selected faculty's bio
    $('a[rel="popup"]').click( function() {
		popHeight = (window.document.body.clientHeight * 0.8) - 35;
        window.open( $(this).attr('href'), '', 'width=700,height=' + popHeight + ',status=0,toolbar=0,location=0,scrollbars=1,menubar=0,links=0,directories=0,resizable=1' );
        return false;
    });
	
	//Hide all user bios initially
	$("div.facultybio").hide();

	//Slide user's bio information down/up based on link click
	$('a[rel="slide"]').click( function() {
		var id = document.getElementById($(this).attr('href'));
		var currentState = $(id).css("display");
        (currentState == "none") ? $(id).show("normal") : $(id).hide("normal");
		return false;
    });
    
});