Jquery load variable

Jquery load variable

Hi,

Is it posible to make a variable in the load function of Jquery.

this is the code:
  $(document).ready(function(){
  $("#page").load("2009-04/14-084131/index.xml #column-1-of-2");
  });


i want to make something like this:

  $(document).ready(function(){
var file = "2009-04/14-084131/index.xml";
  $("#page").load(file + "#column-1-of-2");
  });