// JavaScript Document
var i=0, maxHeight;
$(document).ready(function(){
	$("a.answer").next().slideUp(0);
	$("a.answer").click(function(){
		$(this).blur();
		$(this).next().slideToggle("normal");
		return false;
	});

	setHeight();
});

$(window).resize(function(){setHeight()});

function setHeight(){
	maxHeight=0;
	$(".realHeight","#boxes1").each(function(){
		if(maxHeight<$(this).height()) maxHeight=$(this).height();
	});
	$(".contBox2","#boxes1").height(maxHeight);	
}


$(document).ready(function(){
  $("#ctl00_Main1_TopMenu1_A2").addClass("homea");
});