//Object Information Room Arrangement Animation Class Adjust
$(function(){
  $("select[@name=件名(必須)]").change(function(){
  if($(this).val()=="資料請求"){
	  $("input[@name=ご住所]").attr("name","ご住所(必須)").after("&nbsp;<span class='address'>*必須</span>");
	  $("select[@name=資料請求の方]").attr("name","資料請求の方(必須)");
  }else{
	  $("select[@name=資料請求の方(必須)]").attr("name","資料請求の方");
	  $("input[@name=ご住所(必須)]").attr("name","ご住所");
	  $("span[@class=address]").remove();
	  if($("input[@name=ご住所]").css){
		  $("input[@name=ご住所]").removeAttr("style");
	  }
  }
  return false;
  });
});	 
