
jQuery.noConflict();
    function tableResize() {	
       jQuery('.table-position-absolute td').height( jQuery('#content-wrapper').height());
    }
	
jQuery(document).ready(
    function (){

        tableResize();

        jQuery('#access_bg').load(function(){
            tableResize();
        });
        
        jQuery(window).resize(
            function () {
                tableResize();
            }
         );
    }
    
);
