$(function(){
	$('body :first-child').addClass('firstChild');
	$('body :last-child').addClass('lastChild');
	$('body :empty').addClass('empty');
	$('body :only-child').removeClass('firstChild');
	$('body :only-child').removeClass('lastChild');
	$('body :only-child').addClass('onlyChild');
	$('#topicPath li:not(:last-child)').append('  ');
	$('#gNav a').hover(
		function(){
			$(this).stop().fadeTo(300,0);
		},
		function(){
			$(this).stop().fadeTo(300,1);
		}
	);
	$('#footer').wrapInner('<div></div>');
	$('#footer li a').after(' |');
	$('#gNav ul').hide();
	$('#gNavLi4,#gNavLi6').hover(function(){
			$(this).children('ul').slideToggle();
	});
	$('#flowNav li a').hover(
		function(){
			$(this).stop().fadeTo(300,0);
		},
		function(){
			$(this).stop().fadeTo(300,1);
		}
	);
	$('#flow .section1 li span a').prepend('<img src="images/common/arrow1.gif">');
	$('#topicPath li:last-child a').after('  ')
	$('select').jQselectable({
		set: 'slideDown',
		out: 'slideUp',
		inDuration: 'fast',
		outDuration: 'fast',
		opacity: .8
	});
});

