( function iNav() {
	$( document ).ready( function() {
		var iNavAnchors = $( '#iNav li h2 a' )
		var subNavAnchors = $( '#iNav li div.subNav a' );
		var subNavs = $( '#iNav li div.subNav' );
		iNavAnchors.mouseover( function() {
			$( this ).parent().parent().addClass( 'active' );
		} );
		subNavs.mouseover( function() {
			$( this ).parent().addClass( 'active' );
		} );
		iNavAnchors.mouseout( function() {
			$( this ).parent().parent().removeClass( 'active' );
		} );
		subNavs.mouseout( function() {
			$( this ).parent().removeClass( 'active' );
		} );
		iNavAnchors.focus( function() {
			$( this ).parent().parent().addClass( 'active' );
		} );
		iNavAnchors.blur( function() {
			$( this ).parent().parent().removeClass( 'active' );
		} );
		subNavAnchors.focus( function() {
			$( this ).parent().parent().parent().parent().addClass( 'active' );
		} );
		subNavAnchors.blur( function() {
			$( this ).parent().parent().parent().parent().removeClass( 'active' );
		} );
	} );
}() );