/* $Id: register.js 10 2009-01-26 12:23:43Z marko.bratkovic $ */

var Register = {

	run: function()
	{
		var form = $('#register_form');
		if (form.length) {
			Register.form = form;
			/*Register.createVATprefix();*/
			/*$('#register_form select[name="country"]').bind('change', Register.onCountryChange).trigger('change');*/
		}
	}
/*
	,
	createVATprefix: function()
	{
		var input = $('#register_form input[name="vat_number"]');
		input.before('<div class="vat_prefix"></div>');
		input.css('width', (input.width() - 25) + 'px');
	},
	onCountryChange: function()
	{
		var vat_prefix = $('#register_form div.vat_prefix');
		var option = $(this.options[this.selectedIndex]);
		vat_prefix.html(option.attr('label'));
	}
*/
}
StartUp(Register);
