/* */

$(document).ready(function() {
    $('.form form').hide();
    
    $('.form h3').click(function (){
        $(this).parent().children('form').slideToggle("fast");
    }).hover(
        function (){ //Over
        $(this).addClass("hover");
        }, function (){//Out
        $(this).removeClass("hover");
        });
    
    
    
});

