$(document).ready(function() {
var tempModHeight = 0;
for(var heightloop=0; heightloop < ($("#mainContent").find('dd').length);heightloop++){ 
if (tempModHeight < $("#mainContent").find('dd').eq(heightloop).height()){
tempModHeight = $("#mainContent").find('dd').eq(heightloop).height();
} 
} 
var paddingHeight = $('#mainContent').find('dd>p').css("paddingTop").split("px");
paddingHeight = parseFloat(paddingHeight[0]); 
tempModHeight = tempModHeight + paddingHeight;
$('#homeEasyStarted>div.homeContactInfo').css("height",tempModHeight); 
$('#homeEasyWhy').find('dl').css("height",tempModHeight); 
$('#homeEasyInsurance').find('dl').css("height",tempModHeight); 
$('#mainContent').find('dd').css("height",tempModHeight); 
$('#homeEasyWhy').find('dt').wrapInner("<a href=\"javascript:;\"></a>");
$('#homeEasyWhy').find('dd:first').show();
$('#homeEasyWhy').find('dd:not(:first)').hide().end().find('dt').click(function() { 
$('#homeEasyWhy').find('dd').hide(); 
$('#homeEasyWhy').find('dt').removeClass("on");
$(this).next().toggle(); 
$(this).addClass("on"); 
});
$('#homeEasyInsurance').find('dt').wrapInner("<a href=\"javascript:;\"></a>");
$('#homeEasyInsurance').find('dd:first').show();
$('#homeEasyInsurance').find('dd:not(:first)').hide().end().find('dt').click(function() { 
$('#homeEasyInsurance').find('dd').hide(); 
$('#homeEasyInsurance').find('dt').removeClass("on");
$(this).next().toggle(); 
$(this).addClass("on"); 
});
}); 
