/* $('#language').click( function() { $('#language ul').toggle(); } ); */
$('#hc_world').click( function() { $('#hc_world ul').toggle(); } );
$('#hc_world ul li').click(
	function() { 
		lin = this.getElementsByTagName('a');
		window.location = lin[0].href;
	}
);

/* pngFixi, joka näyttä nyt bugaavan... */
$(document).ready( function() { $(document).pngFix(); } );

$('#choose_target').click( function() { $('#choose_target ul').toggle(); } );
$('#navi div#choose_target ul li').mouseover( function() { $(this).attr('class', 'selected'); } );
$('#navi div#choose_target ul li').mouseout( function() { $(this).attr('class', ''); } );

