jQuery(document).ready(function($) {

	$("#helpMonthInfo").hide();
	$("#helpDownpaymentInfo").hide();
	$("#helpPropertyTaxesInfo").hide();
	$("#helpInterestRateInfo").hide();

	$("#helpMonthlyRentInfo").hide();
	$("#helpHomeValueInfo").hide();
	$("#helpYearsInfo").hide();

	
	$("#mortageTermInfo").hide();
	$("#paymentFrequencyInfo").hide();
	$("#amortizationInfo").hide();
	$("#mortgageAmountInfo").hide();
	$("#interestRateInfo").hide();

$("#incomeInfo").hide();
$("#propertyTaxesInfo").hide();
$("#heatingInfo").hide();
$("#paymentsInfo").hide();
$("#financingInfo").hide();

	$("#income").toggle(
		function(){
				$("#incomeInfo").show("fast").fadeIn(100);
		},
		function()
		{
				$("#incomeInfo").hide("fast").fadeOut(100);
		}
	)

		$("#propertyTaxes").toggle(
		function(){
				$("#propertyTaxesInfo").show("fast").fadeIn(100);
		},
		function()
		{
				$("#propertyTaxesInfo").hide("fast").fadeOut(100);
		}
	)
	
		$("#heating").toggle(
		function(){
				$("#heatingInfo").show("fast").fadeIn(100);
		},
		function()
		{
				$("#heatingInfo").hide("fast").fadeOut(100);
		}
	)
	
		$("#payments").toggle(
		function(){
				$("#paymentsInfo").show("fast").fadeIn(100);
		},
		function()
		{
				$("#paymentsInfo").hide("fast").fadeOut(100);
		}
	)
	
		$("#financing").toggle(
		function(){
				$("#financingInfo").show("fast").fadeIn(100);
		},
		function()
		{
				$("#financingInfo").hide("fast").fadeOut(100);
		}
	)
	
	
	$("#mortgageTerm").toggle(
		function(){
				$("#mortageTermInfo").show("fast").fadeIn(100);
		},
		function()
		{
				$("#mortageTermInfo").hide("fast").fadeOut(100);
		}
	)
	
	$("#paymentFrequency").toggle(
		function(){
				$("#paymentFrequencyInfo").show("fast").fadeIn(100);
		},
		function()
		{
				$("#paymentFrequencyInfo").hide("fast").fadeOut(100);
		}
	)

	$("#amortization").toggle(
		function(){
				$("#amortizationInfo").show("fast").fadeIn(100);
		},
		function()
		{
				$("#amortizationInfo").hide("fast").fadeOut(100);
		}
	)
	$("#mortgageAmount").toggle(
		function(){
				$("#mortgageAmountInfo").show("fast").fadeIn(100);
		},
		function()
		{
				$("#mortgageAmountInfo").hide("fast").fadeOut(100);
		}
	)
	$("#interestRate").toggle(
		function(){
				$("#interestRateInfo").show("fast").fadeIn(100);
		},
		function()
		{
				$("#interestRateInfo").hide("fast").fadeOut(100);
		}
	)


	$("#helpYears").toggle(
		function(){
				$("#helpYearsInfo").show("fast").fadeIn(100);
		},
		function()
		{
				$("#helpYearsInfo").hide("fast").fadeOut(100);
		}
	)

	
	$("#helpMonthlyRent").toggle(
		function(){
				$("#helpMonthlyRentInfo").show("fast").fadeIn(100);
		},
		function()
		{
				$("#helpMonthlyRentInfo").hide("fast").fadeOut(100);
		}
	)

	$("#helpHomeValue").toggle(
		function(){
				$("#helpHomeValueInfo").show("fast").fadeIn(100);
		},
		function()
		{
				$("#helpHomeValueInfo").hide("fast").fadeOut(100);
		}
	)

	$("#helpInterestRate").toggle(
		function(){
				$("#helpInterestRateInfo").show("fast").fadeIn(100);
		},
		function()
		{
				$("#helpInterestRateInfo").hide("fast").fadeOut(100);
		}
	)

	
	$("#helpPropertyTaxes").toggle(
		function(){
				$("#helpPropertyTaxesInfo").show("fast").fadeIn(100);
		},
		function()
		{
				$("#helpPropertyTaxesInfo").hide("fast").fadeOut(100);
		}
	)

	$("#helpDownpayment").toggle(
		function(){
				$("#helpDownpaymentInfo").show("fast").fadeIn(100);
		},
		function()
		{
				$("#helpDownpaymentInfo").hide("fast").fadeOut(100);
		}
	)

	
	$("#helpMonth").toggle(
		function(){
				$("#helpMonthInfo").show("fast").fadeIn(100);
		},
		function()
		{
				$("#helpMonthInfo").hide("fast").fadeOut(100);
		}
	)
	
	
	 
}); 