$(function() {
	$('#hoge h2.flash').flash({
		src: 'files/top.swf',
		width: 900,
		height: 440
	});
	$(function() {
		var n = location.pathname.split('/').pop() || '/';
		$('ul#menu li a').each(function() {
			if ($(this).attr('href') == n) {
				$(this).attr('class', 'current');
			}
		});
	});
});

