$(function(){ 
	// Menu appearance
	$(".top_nav li").hover(function() {
		$(this).css('cursor', 'pointer');
	  $(this).find(".sub_nav").css('display','inline');
		$(this).find(":first").addClass("current");
	}, function() {
		$(this).find(".sub_nav").css('display', 'none');
		$(this).find(":first").removeClass("current");
	});	
	
	// For all links
	$(".sub_nav a").click(function() {															 
	  // Vars
		var student_name = $(this).closest("li").attr('class');
		var project_id = $(this).attr('id');
		// Get the php page with the bottom content
  	$.get("content.php", { name: student_name, project_id: project_id }, function(data) {
		  $("#content").html(data);
	  });
	return false;
	});
});
