
/*----------------------------------------------

	Theme SHOYO SANGYO CO., LTD.
	http://www.shoyo-sangyo.co.jp/
	Description:JavaScript　10-29-2009 (mm-dd-yyyy)
	Version:ver. 1.0

----------------------------------------------*/

$(document).ready(function() {
	
	$('#toolsBlock .pkg input.calc,#toolsBlock .pkg input.clear,#weightBlock .pkg input.calc,#weightBlock .pkg input.clear').hover(
		function() {
			$(this).addClass('hoverBtn');
		},
		function() {
			$(this).removeClass('hoverBtn');
	});

	$('.stripe tbody tr:nth-child(even)').addClass('addColor');

	$('.stripe tr').mouseover(function(){
		$(this).addClass('mouseOver');
	}).mouseout(function(){
		$(this).removeClass('mouseOver');
	});

});




