//DO ON LOAD
$(document).ready(function() {

	mloQuestions();
	
	//On ready load calculator into below mentioned container 
	loadCalculatorElement('#buyingahome');
	
});


//MAIN NAVIGATION
function mloQuestions() {
	
	//load specific container with calculator elements 
	$('.buyingahome').click(function(){
		loadCalculatorElement('#buyingahome');
	});
	
	$('.refinancing').click(function(){
		loadCalculatorElement('#refinancing');
	});
	
	$('.firsthomebuyer').click(function(){
		loadCalculatorElement('#firsthomebuyer');
	});
	
	$('.investing').click(function(){
		loadCalculatorElement('#investing');
	});
	
}

function loadCalculatorElement(selector) {
	$('.mlo-homepage').html("");
	$(selector).load('includes/mlo-homepage.html');
}





     
   
    

