$(document).ready(function(){

  $(".dev a").mouseover(function(){
    $(this).children(".more").css("display","block");
  }).mouseout(function(){
    $(this).children(".more").css("display","none");
  }); 
  
  $(".help dt").click(function() {
    $(".help dd").toggleClass("help_open"); 
    $(".help .help_more").toggleClass("help_open");  
  });       

//  $("#openAdvForm").fancybox();
//  $("#openDevForm").fancybox();
  
  $("#openAdvForm").fancybox({
    'width'	:	850,
    'height'	:	1000,
    'titleShow' : false
  });

  $("#openDevForm").fancybox({
    'width'	:	850,
    'height'	:	1000,
    'titleShow' : false
  });

})

function isValidEmail (email, strict) {
  if ( !strict )
    email = email.replace(/^\s+|\s+$/g, '');
  return (/^([a-z0-9_\-]+\.)*[a-z0-9_\-]+@([a-z0-9][a-z0-9\-]*[a-z0-9]\.)+[a-z]{2,4}$/i).test(email);
}

function isValidPhone(phone) {
  return (/^[0-9]{6,14}$/i).test(phone);
}







