/*
	Dear WorkHabit,
	z-index should not be abused.
	Sincerely,
	-pdpdev
*/

$(document).ready(function(){
		fixParent( $('#nice-menu-1') );
		$('#menu-352').hover(
			function(){
				$(this).css({zIndex: '100'})
			},
			function(){
				$(this).css({zIndex: 'auto'})
			}
		);
	}
);

function fixParent( node ){
	node.css({zIndex: 'auto'});

	if( node.parent().length > 0 )
	{
		fixParent(node.parent());
	}
}
