$(document).ready(function(){
	//setup the company nav drawer	
	$('#btn-companies').click(function(event){
		event.preventDefault();
		$drawer = $('#company-nav #company-list');
		if ( $drawer.is(':visible')){
			$('#btn-companies').removeClass('open');
		} else {
			$('#btn-companies').addClass('open');
		}
		$drawer.slideToggle();
	});
});

$(document).ready(function() {
	$('#txt-search').fieldLabel();
});  
