var flagFooterOpened = 0;

$(document).ready(function(){
	$('a.employee_access_opener').click(function(){
		if(flagFooterOpened == 0){
			$('div#employee_access_container').slideDown('slow');
			$(this).addClass('active');
			flagFooterOpened = 1;
		} else {
			$('div#employee_access_container').slideUp('slow');
			$(this).removeClass('active');
			flagFooterOpened = 0;
		}
	});
});