/*------------------------------------------------------------------
Project:	Kluwer Arbitration
Version:	2.1
Primary use:	Arbitration
-------------------------------------------------------------------*/


$( function()
{

	$( '#Nav li.WithSubmenu' )
		.mouseover( function() { $( this ).addClass( 'Hover' ); })
		.mouseout( function() { $( this ).removeClass( 'Hover' ); });

	$( '.Advance-List li[id*=AdvanceBg]' )
		.mouseover( function() { $( this ).css( 'background-color', '#F2F2F7' ); })
		.mouseout(function() { $(this).css('background-color', '#FFF'); });

	$('#Footermenu-Nav li.WithSubmenu')
		.mouseover(function() { $(this).addClass('Hover'); })
		.mouseout(function() { $(this).removeClass('Hover'); });

});