/* MORTGAGE TOOLS TABS */
$(function(){
	$("#how-much-will-i-pay-tab").bind("mousedown", function(){
	$(this).toggleClass("current");
	$('#how-much-can-i-borrow-tab').toggleClass("current");
	$('#how-much-can-i-borrow').hide('slow');
	$('#how-much-will-i-pay').show('slow');
	}); 
	$("#how-much-can-i-borrow-tab").bind("mousedown", function(){
	$(this).toggleClass("current");
	$('#how-much-will-i-pay-tab').toggleClass("current");
	$('#how-much-can-i-borrow').show('slow');
	$('#how-much-will-i-pay').hide('slow');
	}); 
});
