$(document).ready(function(){
	$("#tabBar li a").click(function(){
		$(".tab").hide();
		var tab = $(this).attr("href");
		$("#tabBar li").removeClass("active");
		$(this).parent().addClass("active");
		$(tab).show();
	});
	$(".tab").hide();
	$(".tab:first").show();

    $("#select").change(function() 
    { 
        url = $("#select").val(); 
		window.location.href = url;
    });
	$("#loginButton").click(function(){
		$("#loginBox").toggle(300);
		$(".error").fadeOut(200);
	});
	$("#loginBox #password").keydown(function(){
		$(".error").fadeOut(300);
	});
	$("#loginBox button").click(function(){
		$(".error").remove();
		var string = $("#loginBox #password").val();
		if (string == "intsta77"){
			window.location.href = "php/index.php";
		}else{
			$("#loginBox").after("<div class='error'>Error!</div>")
		}
	});
});