$(document).ready(function(){
	$("a[rel^='lightbox']").prettyPhoto();
	
	
});

function validateForm(form_name)
{
	switch(form_name)
	{
		case "register":
			
			if($('#users_username').val().length < 6)
			{
				$('#username_taken').css('display','block');
				$('#username_taken').text("Sorry, the password needs to be more than 6 characters");
				return false;
			}
			
			if($('#users_password').val() != $('#users_confirm_password').val())
			{
				$('#password_check').css('display','block');
				$('#password_check').text("Sorry, the passwords do not match");
				return false;
			}
			return true;
			
		break;
	}
}

