$(function(){
		   
    $('.form_note').click(function(){
        if($(this).children('.answer').hasClass('showing')){
            $(this).children('.answer').fadeOut('500').removeClass('showing');
            $(this).css('z-index','5').parent('.control').css('z-index','5');
        }else{
            $(this).children('.answer').fadeIn(500).addClass('showing');
            $(this).css('z-index','100').parent().parent('.control').css('z-index','100');
        }
    });
});

