$(document).ready(function(){

    $(".prihlasit-se-button").click(function(){
		$("#loginpopup").fadeIn("fast", function() {
			$('#loginpopup .inner').animate({
			    top: '50%',
			    opacity: '1'
			  }, 500, 'easeOutExpo');
		});
    });
    
    var popupHideHandler = function()
	{
		$('#loginpopup .inner').animate( {
		    // top: '120%',
		    opacity: '0'
		  }, 500, 'easeOutExpo', function() {
		  	$("#loginpopup").fadeOut("fast", function() {
		  		$("#loginpopup .inner").css({
		  		'top' : '-50%'
		  		})
		  	})
		  })
	};
	
	$(document).keyup(function(e)
	{
	  if (e.keyCode == 27) popupHideHandler();
	});
	
	$("#loginpopupcancel").click(popupHideHandler);
	
	
   $("#profile-tabs").tabs({ fx: { opacity: 'toggle', height: 'toggle' } });
   
    $(".registrovat-se-button").click(function(){
		$(".promo-texty").animate( 
		{
      	"height": "0px",
      	"opacity": "0"
      	}, "slow");
      	$(".hlavni-formular").animate(
      		{
      		"height": "700px"
      		}, "slow");
      	$("#register-page .submit").animate(
      		{
      		"height": "50"
      		}, "slow");
      	$(".o-webu .buttons").fadeOut(1000);
    });
   
 });