$(document).ready(function(){

   $(".akkordeon span.minus")
    .live('click',function(){
        $(this).removeClass().addClass("plus").parent().parent().find("p").slideUp();
    });

   $(".akkordeon span.plus")
    .live('click',function(){
        $(this).removeClass().addClass("minus").parent().parent().find("p").slideDown();
    });

   $(".col_1")
        .mousemove(function(e){

            var x = e.pageX+15;
            var y = e.pageY-97;

            $(this).children("p.error").css({'left':x+'px', 'top':y+'px'});
            })
        .children(':input').hover(function(){
            //mouseover
            $(this)
            .parent()
            .children("p.error")
            .show();
        },function(){
         //mouseout
         $(this)
            .parent()
            .children("p.error")
            .hide();
        });

});
