// ePetitions preview

$(document).ready(function() {

    $('html.noScript').removeClass('noScript');
    $('div.petitionPreviewNoScript').removeClass('petitionPreviewNoScript').addClass('petitionPreview');
    $('.closeButton, .previewPetition, .adminPetition, .petitionPreview').show();

    $('a.previewPetition, a.adminPetition').click(function() {
        $('div.petitionsListingDetails').fadeOut('slow');
        $(this).parent().parent().find('div.petitionsListingDetails').fadeIn('slow');
        $(this).parent().next('div.petitionsListingDetails').fadeIn('slow'); // needed to target IE6
        return false;
    });
    $('a.closeButton').click(function() {
        //$('div.petitionsListingDetails:visible').hide();
        $(this).parent().parent().parent().hide();
        return false;
    });
});
