// Global DOM onload
document.observe("dom:loaded", function() {
  var c = new Common();
  c.first_and_last('#nav li','#sidebar-nav li', '#quick-links-content li');
  if (!$('nterchange')) {
    new Tabs('#main-column .tab');
  }
  
	$$('.article .content').invoke('hide');
	$$('.article h2').each(function(h2){
	  h2.insert({after:'<a class="more-info" href="#">More info</a>'})
	  
	  h2.observe('click', function(e){
	    h2.next('.content').toggle()
	    h2.next('.more-info').toggle()
	  })
	  
	  h2.next('.more-info').observe('click', function(e){
	    h2.next('.content').toggle()
	    h2.next('.more-info').toggle()
	    e.stop()	    
	  })
	  
	});
	
	Shadowbox.init();
});

