jQuery(document).ready(function(){
	jQuery('#nav a').bind('mouseover',function(){
		$this = jQuery(this);
		
		if ( $this.hasClass('depth-2') )
		{
			$this.parents('ul').prev('a').addClass('hover');
		}
		$this.addClass('hover') ;
	}).bind('mouseout',function(){
		$this = jQuery(this);

		if ( $this.hasClass('depth-2') )
		{
			$this.parents('ul').prev('a').removeClass('hover');
		}
		$this.removeClass('hover') ;
	});
})