var CountryChooser = new Class({	
	
	Implements : [Options],
	
	options : {
	
	},
	
	
	initialize : function(options)
	{
		
		this.setOptions(options);
		$('countrySelectorBg').addEvents({
			'mouseover': function(){
				this.setStyle('height','auto');
			},
			'mouseleave': function(){
				this.setStyle('height','23px');
			}
		});
		
	}
	
	
	
});
