// Student login popup

$(document).ready( function(){
	
	if ($('#student-login-form').hasClass('vis')) {
		$('#student-login-form').show();
		$('#student-login-button').hide();
	}
	
	$('#student-login').click(function() {
		
		if ($(this).hasClass('toggled')) {
			$(this).removeClass('toggled');
			$(this).css('background-position','0 0');
			$('#student-login-button').show();
			$('#edverum-login-button').show();
		}
		else {
			$(this).addClass('toggled');
			$(this).css('background-position','0 -30px');
			$('#student-login-button').hide(); 
			$('#edverum-login-button').hide();
		}
		$('#student-login-form').show();
	});
	
	
	

});
