jQuery().ready(function(){
	jQuery('#contents-am').accordion({
        active: false,
		    header: '.contents-head',
		    selectedClass: 'contents-head-selected',
		    event: 'click',
		    autoHeight: false,
		    alwaysOpen: false
	});
	
  jQuery('#contents-nz').accordion({
        active: false,
		    header: '.contents-head',
		    selectedClass: 'contents-head-selected',
		    event: 'click',
		    autoHeight: false,
		    alwaysOpen: false
	});
	
  $('#contents-am .contents-head').click(function() {
	  $('#contents-nz').accordion('activate', -1);
  });
	
  $('#contents-nz .contents-head').click(function() {
	  $('#contents-am').accordion('activate', -1);
  });

});	
