	
	var j$ = jQuery;
	j$(function(){
		j$("form").validation({
			msgs: {
				email: "正しいEメールアドレスを入力してください<br />例：info@green-pan.jp",
				submit: "入力が完了していない<strong>必須項目</strong>があります。<br /><strong>必須項目は全て入力</strong>してください。"
			},
			extension: {
				AjaxZip2: true
			},
			dialog: {
				dialogOpacity: .8
			}
		});
	});
	
	
	
 
    j$(function(){
      j$(".acc").each(function(){
        j$("li > a", this).each(function(index){
          var $this = j$(this);
 
          if(index > 0) $this.next().hide();
 
          $this.click(function(){
            var params = {height:"toggle", opacity:"toggle"};
            j$(this).next().animate(params).parent().siblings()
            .children("ul:visible").animate(params);
            return false;
          });
        });
      });
    });
