$(document).ready(function () {
	$('#kakakuTable').jTPS( {perPages:[5,12,15,30,'ALL'],scrollStep:1,scrollDelay:30} );
	$('#kakakuTable tbody tr:not(.stubCell)').bind('mouseover mouseout',
		function (e) {
		e.type == 'mouseover' ? $(this).children('td').addClass('hilightRow') : $(this).children('td').removeClass('hilightRow');
		}
	);
});
