$(document).ready( function() {
	$('.keyvisual_right a').click( function() {
		$('.keyvisual').fadeOut();
		$('.keyvisual'+this.className).fadeIn();
		$('.keyvisual_right .active').removeClass( 'active');
		$(this.parentNode.parentNode).addClass( 'active');
	});
    $('#page_left .closed_box').bind( 'click', function() { $(this).hide().next().show();});
    $('#page_left .box .minus').parent().click( function() { $(this.parentNode).hide().prev().show();});
	$('.languages')
		.mouseover( function() { $(this).addClass( 'open'); $('li', this).addClass( 'show');})
		.mouseout( function() { $(this).removeClass( 'open'); $('li', this).removeClass( 'show');});
    $(document).pngFix(); 
}); 
