$(document).ready(function() {
    $('.myTable01').fixedHeaderTable({ width: '682', height: '600', footer: true, cloneHeadToFoot: true, altClass: 'alt', themeClass: 'fancyTable', autoShow: true });
    
    $('.myTable01').fixedHeaderTable('show', 1000);
    
	$('a.makeTable').bind('click', function() {
		

		$('.myTable01').fixedHeaderTable('destroy');
		
		$('.myTable01 th, .myTable01 td')
			.css('border', $('#border').val() + 'px solid ' + $('#color').val());
			
		$('.myTable01').fixedHeaderTable({ width: $('#width').val(), height: $('#height').val(), footer: true, themeClass: 'fancyTable' });
	});
});
