// Apartment Ideas 2011
$(document).ready(function() {
	// Sign Up form
	$("form#create-an-account").validate({
        rules: {
          new_password: { 
                required: true, minlength: 5
          }, 
          confirm_password: { 
                required: true, equalTo: "#new_password", minlength: 5
          }, 
          new_email: {
          required: true, email: true,
		  remote: {
				url: "/2011/script/create_new_account.php?action=validate-new-email",
				type: "post"
			 }
          }
        },
        messages: {
         confirm_password: "Oops, your passwords don't match!",
         new_email: "Please enter a valid email.",
		 new_email: {
	     	remote:jQuery.format("That email is already registered!")
	     },
         new_password: "At least 5 characters long, please."
        }
      });

	// Load external links in a new window...
	$('#footer a').fancybox({		
		'height'		:	400, 
		'width'		:	700, 
		'scrolling'		:	'yes', 
		'overlayShow'	:	true
	});
	$('a[rel=external]').attr('target','_blank');
});
