var contactSelector = Class.create ({
	
	initialize: function(container)
	{
		this.container = container;		
		this.showSelector();
		
		$('formType').observe("change", this.formType.bind(this));
	},
	
	showSelector: function()
	{		
		if ($('selector').hasClassName('displayNone'))  {
			$('selector').removeClassName('displayNone');
		}
	},
	
	formType: function(event)
	{
		window.location = $F('formType');
	}
});


document.observe('dom:loaded', function()
{	
	if ($("contact")) {
		new contactSelector($('contact'));
	}
});
