$(document).ready(function(){

	$('input').click(loadDT);

	function loadDT(){
		$('#internal').load('get.cfm'); 
	}
	loadDT();

});