// JavaScript Document

jQuery.noConflict();




jQuery(document).ready(function () {

	
	
	jQuery('a.subber.dep2').hover(function () {
				   
				  //jQuery('div.sub:not(.sub_'+docid+'.dep2)').hide();
					jQuery('.sub.dep2').hide();
					
				   var docid = jQuery(this).attr('id');
					jQuery('.sub_'+docid+'.dep2').show();				   


				   }, function () {
					   
					jQuery('.sub').mouseleave(function () {
				    
					jQuery('.sub').hide();	
					   
					   });	
					   
					   });
	
			
		
								 });
