//footerarea

jQuery(function() {
 var row = 4;
 var maxHeight = 0;
jQuery("#FooterRight dl").each(function(i) {
if(maxHeight < jQuery(this).height()) {
maxHeight = jQuery(this).height();
}
jQuery(this).addClass("row");
if(i%row==row-1) {
jQuery("#FooterRight dl.row").height(maxHeight).removeClass("row");
maxHeight=0;
}
})
jQuery("#FooterRight dl.row").height(maxHeight).removeClass("row");
});

//centerpoint
jQuery(function() {
var dlmaxHeight = 0;
jQuery(".centerpointbox dl").each(function() {
	if(dlmaxHeight < $(this).height()) {
 	dlmaxHeight = $(this).height();
		}
	}).height(dlmaxHeight);
});

//accessheight
jQuery(function() {
var AccessHeights = 0;
jQuery(".accessheight dd").each(function() {
	if(AccessHeights < $(this).height()) {
 	AccessHeights = $(this).height();
		}
	}).height(AccessHeights);
});

//accessheight
jQuery(function() {
var bpheight = 0;
jQuery(".indexbrainprofiles").each(function() {
	if(bpheight < $(this).height()) {
 	bpheight = $(this).height();
		}
	}).height(bpheight);
});



//PageTop
/*
jQuery(function() {

jQuery(window).scroll(function() {
	jQuery("#FooterBt").css("display","block");
	jQuery("#FooterContents").css("padding","1em 0");
 });

});
*/
