$(document).ready(function() {

	$(".startpage-box2").bind("mouseenter", function() {
	$height = $(this).find(".startpage-box2menu").height();
	//alert($heightn);
	$newHeight = 100 + $height;
		$(this).find(".startpage-box2content").animate({
		height: $newHeight

		});
		
		
	});
	$(".startpage-box2").bind("mouseleave", function() {
	
		$(this).find(".startpage-box2content").animate({
		height: '100px'

		});
		
	});

});
