function show_detail(id){
	//$("#faculty-" + id + "-detail").Popup();
	$.fancybox({content:$("#faculty-" + id + "-detail").html()})
}
function show_contact(id){
	//$("#faculty-" + id + "-contact").height("400px");
	//$("#faculty-" + id + "-contact").Popup();
	$.fancybox({
	  content:$("#faculty-" + id + "-contact").html(),
      'width': 350,
      'height': 275,
      'autoDimensions': false
      })
}
function show_degree(degree){
	$("#mba,#bba,#doctoral").hide("slow").addClass("degree");
	$("#" + degree).show("fast");
}
function show_research(id){
	//$("#faculty-" + id + "-research").height("200px");
	//$("#faculty-" + id + "-research").Popup();
	$.fancybox({content:$("#faculty-" + id + "-research").html()})
}
$().ready(function(){
	$("h3.year").click(function(){
		$(this).parent().children("div").toggle('slow');
	})
})
