﻿
$(document).ready(
    function()    
    {
        $(this).bind('tn_tixLoad', 
            function() 
            {  
                $('.dtlRevealer').click(
                    function()
                    {                    
                        var curRowID = $(this).attr('id').replace('revealDetails', '');
                        
                        $('#details' + curRowID).slideToggle('slow');                        
                    }
                );
            }
        );        
    }
);
