// JavaScript Document
window.addEvent('domready', function(){
									 
	$('button2008').addEvent('mouseover', function(){
		$('description2008').className = 'show';
	});
	$('button2008').addEvent('mouseout', function(){
		$('description2008').className = '';
	});
	
	$('button2007').addEvent('mouseover', function(){
		$('description2007').className = 'show';
	});
	$('button2007').addEvent('mouseout', function(){
		$('description2007').className = '';
	});
	
	$('buttonArchive').addEvent('mouseover', function(){
		$('descriptionArchive').className = 'show';
	});
	$('buttonArchive').addEvent('mouseout', function(){
		$('descriptionArchive').className = '';
	});
	
	
	
	
	$$('.popup1j').addEvent('click', function(e){
		new Event(e).stop();
		window.open('topics_1.html#news1_J','topics','width=800,height=516,status=no,scrollbars=yes,directories=no,menubar=no,resizable=yes,toolbar=no');
	});
	$$('.popup1e').addEvent('click', function(e){
		new Event(e).stop();
		window.open('topics_1.html#news1_e','topics','width=800,height=516,status=no,scrollbars=yes,directories=no,menubar=no,resizable=yes,toolbar=no');
	});
	$$('.popup2j').addEvent('click', function(e){
		new Event(e).stop();
		window.open('topics_2.html#news2_J','topics','width=800,height=516,status=no,scrollbars=yes,directories=no,menubar=no,resizable=yes,toolbar=no');
	});
	$$('.popup2e').addEvent('click', function(e){
		new Event(e).stop();
		window.open('topics_2.html#news2_e','topics','width=800,height=516,status=no,scrollbars=yes,directories=no,menubar=no,resizable=yes,toolbar=no');
	});
	
	
	
});