function showSubSub() {
/*	$(this).children("ul").stop(); */
	$(this).children("ul").animate({  
        width: "100%", 
      }, 400 ); ;
}

function hideSubSub() {
/* 	$(this).children("ul").stop(); */
	$(this).children("ul").animate({  
        width: "0%", 
      }, 400 ); ;
}

// JavaScript Document

$(function() {
//	$("div#top-menu-div ul li ul li").mouseover(showSubSub);					 
//	$("div#top-menu-div ul li ul li").mouseout(hideSubSub);					 
});
