/*Prisposobovanie vysky footra*/
$(document).ready(function(){resizeFooter();});
$(window).resize(resizeFooter);

function resizeFooter(){
    
    var height = $(window).height()-$("#merac").height();
    
    if(height < 180){
        height = 180;
    }
       
    $("#footer").height(height);  
    
}


$(document).ready(function(){$(".menu img").hover(
    function () {
	$(".menu div:first").removeClass();
	$(".menu div:first").addClass($(this).attr('class'));
    },
    function () {
	$(".menu div:first").removeClass();
    }
);});

/*$(document).ready(function(){$("span").click(
    function () {

	if($(this).hasClass('ak')){
	    $(this).parent().prev(":hidden").fadeIn(500);
	}
	else{
	    $(this).parent().prev(":visible").fadeOut(500);
	}

	$(this).fadeOut();
	$(this).parent().children(":hidden").fadeIn();

    }
);});

  */
  
function submitForm(){     
    $("#regform").submit();
}

function loginForm(){                  
    $("#logform").submit();
}
