$(document).ready(function(){
       
       try{        
				$("ul.sub-menu").parent().mouseover(
				  function(){
					$(this).children('ul.sub-menu').show();
					//$(this).children('a').click(function() { return false; });

					//$(this).children('a').href();
				}
				).mouseout(
				   function(){
					$(this).children('ul.sub-menu').hide();
				});
       }catch(e){
        
       }
       
         });
