
$( function ( ) {

	init();
	initEvent( );
});

$( window ).load(function ( ) {

});


function init ( ) {

	if ( $( '#nav1' ).children('li.selected').children('ul').length ){
		$( '#nav2' ).html($( '#nav1' ).children('li.selected').children('ul').html());
	}
	var filename = location.pathname.split('/')[location.pathname.split('/').length-1].split('.')[0];
	$( 'ul#nav2 li a' ).each(function(){
		var url = $( this ).attr('href');
		if ( url && url != '#' )
			if ( url.split('.')[0] == filename )
				$( this ).closest('li').addClass('selected');
	});

	$("a.colorbox").colorbox();

}
function initEvent ( ) {

}


