//jQuery.noConflict();



function showhideLstDrop (num)
 {
	 
	 
	 if (document.getElementById('hypDrop1').className=="lanHide")
	 {
	
	 document.getElementById('hypDrop1').className = 'langShow';
	 }
	 else
	 {
	
	 document.getElementById('hypDrop1').className = 'lanHide';	   
	 }
 }
 
 
jQuery(document).ready(function() {	
  
		
 
 jQuery('#hypDrop1').click(function(){  
     jQuery('#dvLstDrop1').slideToggle('slow');
	   
   });
   
  
   });
