$(document).ready(function() {
  // cross-app links
  $('a').click(function(e) {
    var href = $(this).attr('href');
    
    
    if(href.indexOf('http') >= 0) {
      $(this).unbind('click');
      e.preventDefault();
	  
	  if($(this).attr('target') == '_blank' {
		window.open(href);
	  }
	  else {
	    top.location.href = href;
	  }
    }
  });
  
  $('#table select').change(function() {
    $(this).parent('form').submit();
  });
    
  $('.js_hidden').hide();
});
