var customerService ={
	container: null,

	init: function(){
	customerService.container = $('div.container');
	customerService.container.find('select#country').selectbox(
			{
				inputClass: 'selectboxBigLong',
				containerClass: 'selectbox-wrapperBigLong',
				scrollBar: true,
				hoverClass: 'selectHover'
			}
	)
	}
}
$(document).ready(function() { 
	customerService.init();
}); 
