$(document).ready(function() {

	$(".newPop").click(function(){
		var thishref = $(this).attr("href");
		var thisId = $(this).attr("id");
		
		$.ajax({
			url: thishref,
			success: function(data) 
			{
				var thisPosTop = (($("#"+thisId).position().top));
				$("#presentation").css("top","-200");
				
				$("#presentationContent").html(data);
				$("#presentation").show();
				
				
				$("#presentation").animate({
					opacity: 1.0,
					top: thisPosTop
					}, 1000, function() {
				});
				
				
			}
		});
		
		return false;
	});
	
	$("#closepresentation").click(function(){
		$("#presentation").animate({
			opacity: 0,
			top: -400
			}, 1000, function() {
			// Animation complete.
		});
		
	});
});
