$(document).ready(function(){

    //set up links
    $('<span class="morespan"><a href="#" id="not_sure">Not Sure?<\/a><\/span>').insertBefore('#not_sure_content');
    $('#not_sure_content').prepend('<a href="#" class="closeparent">Close [x]<\/a>')

    $('<span class="morespan"><a href="#" id="whats_this">What is this?<\/a><\/span>').insertBefore('#whats_this_content');
    $('#whats_this_content').prepend('<a href="#" class="closeparent">Close [x]<\/a>')

    $('<span class="morespan"><a href="#" id="ni_why">Why this is requested<\/a><\/span>').insertBefore('#ni_why_content');
    $('#ni_why_content').prepend('<a href="#" class="closeparent">Close [x]<\/a>')

                                                        

    $('.morespan a').click(function(){
        var id = $(this).attr('id');

        if($('#'+id+'_content:visible').length > 0) {
            $('#'+id+'_content:visible').slideUp(250);
            return false;
        }

        $('#'+id+'_content').slideDown(250);
        return false;
    });


    $('a.closeparent').click(function() {
        $(this).parent().slideUp(250);
        return false;
    });
});
