
		
		
		
		
		$(document).ready
		(
			function()
			{
				$("li.DOP_CSS_LI a.sub_menu_item_link").hover
				(
					function()
					{
						$(this).parent().find("ul.DOP_CSS_UL").animate({"height": "toggle", "opacity": "toggle"}, 400);


						$(this).parent().hover
						(
							function()
							{

							},


							function()
							{
								$(this).parent().find("ul.DOP_CSS_UL").animate({"height": "hide","opacity": "toggle"}, 350);
							}

						);
					}
				)
			}



		);



