// $Id$
 $(document).ready(function(){ 

 $('a.xap_feature').click(function () {
 
       var updatexap = function(data) 
      {
       $('#divxap').html(data);
      }
      $.ajax({
      type: 'GET',
      url: this.href, 
      success:updatexap  
      });
     return false; 
});
 
 
 $('a.image_class').click(function () {
    
      var updatexap = function(data) 
      {
      $('#divxap').html(data);
      }
      $.ajax({
      type: 'GET',
      url: this.href, 
      success:updatexap        
      });
     return false; 
});

 




});



