jQuery(document).ready(function($) {
   $('.edit_area').editable('http://nzsti.thebrainstorm.co.nz/assets/includes/TopicEdit.php', { 
         type      : 'textarea',
         cancel    : 'Cancel',
         submit    : 'OK',
         indicator : '<img src="http://nzsti.thebrainstorm.co.nz/assets/images/loading.gif">',
         tooltip   : 'Click to edit...'
     });
  $('.stripeMe tr:even').addClass('alt');
 
  
  if ( $(".warning").length > 0 ) {
		$(".warning").remove();
		
		$.get("http://nzsti.thebrainstorm.co.nz/assets/includes/token.php", function(txt){
			$(".secure").append('<input type="hidden" name="ts" value="'+txt+'" />');										 
		});
	}
  
}) 


$(document).ready(function() {
  $("a[@href^=http]").each(
    function(){
      if(this.href.indexOf(location.hostname) == -1) {
        $(this).attr('target', '_blank');
      }
    }
  )
});
