var ContactUs ={
	
	container: null,
	
	init: function(){
		ContactUs.container = $('div.container');
		ContactUs.container.find('select#department').selectbox(
				{
					inputClass: 'selectboxBigLong',
					containerClass: 'selectbox-wrapperBig',
					scrollBar: true,
					hoverClass: 'selectHover'
				}
		)
	},
	  /**
	*	every change of time value (Lightstreamer)
	*	we call to 'onUpdateTime' function
	*
	**/
	onUpdateTime: function() {
		
	}
}
$(document).ready(function() { 
	ContactUs.init();
}); 