jQuery(
  
  function ($) {
      
    init_ajax();
      
    new com.url.Index();
    
    function init_ajax() {
    
     $.ajaxSetup({
        
        cache:     false,
        dataType:  'html',
        global:    false,
        timeout:   5000
        
      });
    
    } // init_ajax
  
  } // construct
  
);


var com = 
{
  
  url: {
  
  
    Index: function() {
    
    
      new com.url.Links()
    
    } //Index
    
    ,
        
    Links: function() {
    
      $('a._blank').attr('target','_blank');
            
    }  // links
    
   
  } //url

} //com