$(function(){
    $('div.loadAjax').html('<img src="images/ajax-loader.gif" />').each(function(){
       $(this).load(baseurl + $(this).attr('id').replace('-', '/').replace('-', '/'));
    });
    
    
    $('div.loadAjax1').html('<img src="images/ajax-loader.gif" />').each(function(){
        $(this).load(baseurl + $(this).attr('id').replace('-', '/').replace('-', '/'));
    });    
});

