$(function(){
	$('.loginbox a.login').click(function(){
		 $.ajax({
		   type: "POST",
		   url: "php/login.php",
		   data: "username="+$("input[name='username']").val()+"&password="+$("input[name='password']").val(),
		   success: function(msg){
			 if( msg == "true" ) {
				 location.href="mijnmeubelknaller.php";
			 } else {
				 if($('.box.loginbox .msg').css("display") == "none"){
					$('.box.loginbox .msg').show();
					var targetHeight = $('.loginbox').height();
					$('.hiddenitemscontainer').animate( { height:targetHeight}, { queue:false, duration:500 }  );
					$('.box.loginbox .msg').hide().slideDown(500);
					blink($('.box.loginbox .msg'));
				 }
			 }
		   }
		 });
	});
});

function blink(element){
	var speed = 500;
	var timeout = 1000;
	element.fadeTo(speed, 0, function(e){
		$(this).fadeTo(speed, 1, function(e){	
			$(this).fadeTo(timeout, 1, function(e){
				blink($(this))
			});
		});
	});
}
