/*jQuery(document).ready(function(){
// if the height is very less let's position it at center.
	if($(window).height() > $('#my_body').height()){
		diff=$(window).height()-$('#my_body').height();
		diff=parseInt(diff/2)-2
		$('#my_body').attr("style","margin-top:"+ diff +"px")
	}

});*/

//script for equal height of two divs
function equalHeight(group) {
tallest = 0;
group.each(function() {
thisHeight = $(this).height();
if(thisHeight > tallest) {
tallest = thisHeight;
}
});
group.height(tallest);
}

$(document).ready(function() {
equalHeight($(".textelement.half"));

});


