$(document).ready(function(){
	$('.showhide1').hide();
	
	$('a#loan').click(function(){
	$('.showhide1').toggle();
	});
	
});

$(document).ready(function(){
	$('.showhide2').hide();
	
	$('a#mortg').click(function(){
	$('.showhide2').toggle();
	});
	
});
$(document).ready(function(){
	$('.showhide3').hide();
	
	$('a#forbe').click(function(){
	$('.showhide3').toggle();
	});
	
});
$(document).ready(function(){
	$('.showhide4').hide();
	
	$('a#short').click(function(){
	$('.showhide4').toggle();
	});
	
});
$(document).ready(function(){
	$('.showhide5').hide();
	
	$('a#deed').click(function(){
	$('.showhide5').toggle();
	});
	
});
