/**
*
*  Scrollable HTML table plugin for jQuery
*  http://www.webtoolkit.info/
*
**/
 
$.fn.Scrollable = function(tableHeight, tableWidth) {
	this.each(function(){
			var table = new ScrollableTable(this, tableHeight, tableWidth);
	});
};