/*****************************
 * WS_r_side
 *****************************/

$(function(){
	//
	$('#r_side .link_cell').each(function(){
		$(this).click(function(){
			var href = $(this).children('.link_name').attr('href');
			location.href = href;
		}).mouseover(function(){
			$(this).css('cursor','pointer');
			$(this).children('.link_name').css('color','#fd3e9e');
		}).mouseout(function(){
			$(this).children('.link_name').css('color','#00f');
		});
	});

	// ダイレクトジャンプメニュー
	$('#d_jump').change(function(){
		var cate = $(this).val();
		if(cate != 0){
			location.href = 'shohin_list.php?cate='+cate;
		}
	});

	// リセットボタン
	$('#reset').click(function(){
		$('select option[@selected]').removeAttr('selected');
		$('input[@type="text"]').val('');
	});

	// カートに入れるボタン
	$('.cart_in').click(function(){
		$fm = $($(this).parent('form'));

		$count = $('.in_count', $fm);

		if (!$count.val()) {
			alert('数量を入力してください');
			return false;
		} else {
			if (parseInt($count.val()) == 0) {
				alert('数量を入力してください');
				return false;
			}else{
				if(!$count.val().match(/[0-9]+/)){
					alert('半角数字以外は入力できません');
					return false;
				}
			}
		}
	});
});

