/**
 *	This extends the Magento validation class to validate the Australia mobile number.
 */
Validation.add('validate-cellphone-au', 'Invalid mobile number', function(value){
	return value.match(/^[0-9]{10}$/);
});

