// JavaScript Document


$(document).ready(function(){
  var value = location.search.substring(1).split('=')[1];
  //alert(value);
  if(value != undefined){
	$("form :checkbox")[value].checked=true;
  }
   $("#catalog_form").submit(function(){
	var checkValue = $("form :checkbox:checked").length;
	//if(checkValue > 3 || checkValue < 1){
		//alert('チェックは3箇所以内でお願いします。');
		//return false;
	//}
	return true;
   });
});

