

    $(document).ready(function(){

        // initiate privacy pane scrolling and hide
        $('#pane1').jScrollPane({scrollbarWidth:42, dragMinHeight:14, dragMaxHeight:14, showArrows:false});
        
        // doesn't work yet because node doesn't exist on page
        // using post backs on product page w/ AJAX content pane
        // div is invisible server control
        //$('#info_container').jScrollPane({scrollbarWidth:42, dragMinHeight:14, dragMaxHeight:14, showArrows:false});
        
        
        // make checkboxes mutually exclusive
        $('.signup input:checkbox').click(function(){
            if ($(this).attr('checked')) {
                $('.signup input:checkbox').each(function(){
                        $(this).attr('checked', false);
                });
                $(this).attr('checked', true);
            }  
        });

     });// end document.ready





function pageLoaded(sender, args)
{
    $('#info_container').jScrollPane();
}

