/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

$(document).ready(function(){
    $('#search').focus(function(){
        $('#quickSearch > div > label').html('');
    });
    $('.question').click(function(){
        var answer = $(this).parent().find('.answer');
        if(answer.css('display')== 'none')
        {
            answer.show('slow');
        }
        else
        {
            answer.hide('slow');
        }
    });

});

