// Document ready
$(document).ready(function(){
	//////////////////////////////////////////////////////////////////////////////////////////////
	// Links
	//////////////////////////////////////////////////////////////////////////////////////////////

	$(".link").click(function(){
		window.location = $(this).attr("alt");
	});
	
	//////////////////////////////////////////////////////////////////////////////////////////////
	// Tabs
	//////////////////////////////////////////////////////////////////////////////////////////////

	$("#tabnav li a[alt='tab1']").attr("class", "active");
	$(".tab_content[alt='tab1']").show();
	
	$("#tabnav li a").click(function(){
		// Activate tab
		$("#tabnav li a").attr("class", "");
		$(this).attr("class", "active");
	
		// Show tab content
		$(".tab_content").hide();
		$(".tab_content[alt='" + $(this).attr("alt") + "']").show();
	});
	
	
	//////////////////////////////////////////////////////////////////////////////////////////////
	// Keyboard hotkeys
	//////////////////////////////////////////////////////////////////////////////////////////////
	
	// Ctrl+Alt+L = Login/Logout
	shortcut.add('Ctrl+Alt+L', function() {
		// Login
		if($('.button[alt="logginn"]').length == 1){
			$('.button[alt="logginn"]').click()
		}
		// Logout
		else {
			window.location = 'action.php?a=logout';
		}
	});
	
	// Esc = Close any open tooltip
	shortcut.add('Esc', function() {
		 $('.qtip').qtip('hide');
	});

	
});
