$(document).ready(function(){

	ajaxpage('ajaxfiles/financialplans_business.htm','boxBottom');

	$("#busframe").click(function(){
		ajaxpage('ajaxfiles/financialplans_business.htm','boxBottom');
	});

	$("#famframe").click(function(){
		ajaxpage('ajaxfiles/financialplans_individuals.htm','boxBottom');
	});

});

function ajaxpage(url, containerid){
	$.ajax({ url: url, context: document.body, dataType: "html", success: function(data){
		$('#'+containerid).html(data);
	}});
}

