$(document).ready(function()
{
	$('#product_table').tableHover({rowClass: 'hoverrow', colClass: 'hover', headCols: true, ignoreCols: [1,2,3,4,13,16]});

	$('#product_table').columnManager({colsHidden: [6,8,10,12,15,18,20,22,24]}); 
	var opt = {onClass: 'advon', offClass: 'advoff',
			hide: function(c){
				$(c).hide();
			},
			show: function(c){
				$(c).fadeIn();
			}};

	$('.massage_detail_off').click(function(){ $('#product_table').hideColumns([5], opt).showColumns([6], opt)});
	$('.massage_detail_on').click(function(){ $('#product_table').hideColumns([6], opt).showColumns([5], opt)});

	$('.junanbiyoeki_detail_off').click(function(){ $('#product_table').hideColumns([7], opt).showColumns([8], opt)});
	$('.junanbiyoeki_detail_on').click(function(){ $('#product_table').hideColumns([8], opt).showColumns([7], opt)});

	$('.pack_detail_off').click(function(){ $('#product_table').hideColumns([9], opt).showColumns([10], opt)});
	$('.pack_detail_on').click(function(){ $('#product_table').hideColumns([10], opt).showColumns([9], opt)});

	$('.biyouekioil_detail_off').click(function(){ $('#product_table').hideColumns([11], opt).showColumns([12], opt)});
	$('.biyouekioil_detail_on').click(function(){ $('#product_table').hideColumns([12], opt).showColumns([11], opt)});

	$('.biyoeki_detail_off').click(function(){ $('#product_table').hideColumns([14], opt).showColumns([15], opt)});
	$('.biyoeki_detail_on').click(function(){ $('#product_table').hideColumns([15], opt).showColumns([14], opt)});

	$('.cream_detail_off').click(function(){ $('#product_table').hideColumns([17], opt).showColumns([18], opt)});
	$('.cream_detail_on').click(function(){ $('#product_table').hideColumns([18], opt).showColumns([17], opt)});

	$('.nicchubiyoeki_detail_off').click(function(){ $('#product_table').hideColumns([19], opt).showColumns([20], opt)});
	$('.nicchubiyoeki_detail_on').click(function(){ $('#product_table').hideColumns([20], opt).showColumns([19], opt)});

	$('.hiyakedome_detail_off').click(function(){ $('#product_table').hideColumns([21], opt).showColumns([22], opt)});
	$('.hiyakedome_detail_on').click(function(){ $('#product_table').hideColumns([22], opt).showColumns([21], opt)});
	
	$('.handcream_detail_off').click(function(){ $('#product_table').hideColumns([23], opt).showColumns([24], opt)});
	$('.handcream_detail_on').click(function(){ $('#product_table').hideColumns([24], opt).showColumns([23], opt)});

});
