$(document).ready(function(){

    $("#HomeSections .page").each(function(){
	MakeItemClickable($(this), true);
	
	$(this).bind("mouseenter", function(){
		var page = $(this);
		var pageSummary = $($(this).find(".pageSummary"));
		var headingElement = pageSummary.find("h2");
		var currentHeight = page.height() - headingElement.outerHeight(true);
		var moveTo= currentHeight - pageSummary.outerHeight(true) + headingElement.outerHeight(true);
		pageSummary.animate({
			"top" : moveTo + "px"
		}, 100);
	});

	$(this).bind("mouseleave", function(){
		var page = $(this);
		var pageSummary = $(page.find(".pageSummary"));
		var headingElement = $(pageSummary.find("h2"));
		var moveTo = page.height() - headingElement.outerHeight(true);
		
		pageSummary.animate({
			"top" :  moveTo + "px"
		}, 100);
	});
    });

    $("#HomeSections .pageSummary").each(function(){
	var page = $(this).parent();
	var headingElement = $(this).find("h2");
	$(this).css("top", page.height()-headingElement.outerHeight(true)+"px");
    });
});
