$(document).ready(function(){    

    $("#form_logowanie").validationEngine();
    $("#form_rejestracja").validationEngine();


$('#b_logowanie').click(function() {
    $(this).css('background-color', '#FFF');
    $('#rejestracja').hide();
    $('#logowanie').show();
});

$('#b_rejestracja').click(function() {
    $(this).css('background-color', '#FFF');
    $('#logowanie').hide();
    $('#rejestracja').show();
});

$("input.opis").append("<em></em>");

$("input.opis").hover(function() {
    $(this).find("em").animate({opacity: "show", top: "-75"}, "slow");
    var hoverText = $(this).attr("desc");
    $(this).find("em").text(hoverText);
    console.log("tralala");
}, function() {
    $(this).find("em").animate({opacity: "hide", top: "-85"}, "fast");
});


});

