$(document).ready( function() {
	//News article popups
	$('a[rel="newspopup"]').click( function() {
		window.open( $(this).attr('href'), 'newspopup', 'menubar=0,location=0,scrollbars=1,width=600,height=740' );
		return false;
	});



	//Generate popup of selected faculty's bio
    $('a[rel="popup"]').click( function() {
		//popHeight = (window.document.body.clientHeight * 0.8) - 35;
		popHeight = 800;
        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;
    });

});