Setting a Delay() on running a jQuery function

I want to have a delay on a jquery function and am unsure about how to do this. My code is(jscrollpane):

$(function()
{
	$('#resume').jScrollPane();
});

Any help, guidance, code with explanation would be gratefully appreciated.

PChuprina

$(‘#resume’).delay(100).queue(function(next) { $(this).jScrollPane(); next(); });

Sorry did not work. It broke jScrollPane.

PChuprina