$(document).ready(function () {

    // **************************************************** 
    // Expander
    // **************************************************** 

	$(".expander h2").click(function () {
		$(this).siblings(".expander-content").slideToggle();
		$(this).toggleClass('closed');
		return false;
    });
	
	
	// **************************************************** 
    // Expander2
    // **************************************************** 

	$(".expander2 a").click(function (e) {
		$(this).siblings(".expanding").slideToggle();
		e.preventDefault();
    });


}); //end all


function checkForm()
  {
    
    // regular expression to match required email format
    //var re = /^(([^<>()[\]\\.,;:\s@\"]+(\.[^<>()[\]\\.,;:\s@\"]+)*)|(\ ".+\"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA -Z\-0-9]+\.)+[a-zA-Z]{2,}))$/;  
 
   // if( !$("#email").val()) {
   //   alert("Tom epost!");
   //   return false; 
   // } else if( !re.test($("#email").val())){ 
   //   alert("Feil epostformat!");
   //   return false;  
   // } else {
      return true; 
   // }

  }
