var CountryChooser = new Class({	
	
	initialize : function()
	{
		$('#countrySelectorBg').bind({
			mouseenter: function(){
				$(this).css('height','auto');
			},
			mouseleave: function(){
				$(this).css('height','23px');
			}
		});       
		
	}
	
	
	
});

