$(document).ready(function(){
								   var activeitem = $("#top_navigation >ul >li.active");
								   $(".nav_section").hover(function(){
																		  $(this).stop().removeClass("active").addClass("hover");
																		  $(".dd_container",this).stop().css("display","block");
																		  }, 
																	  function(){
																		  if($(this).attr("id") == activeitem.attr("id"))
																			  activeitem.stop().removeClass("hover").addClass("active");
																		  else																		
																				$(this).stop().removeClass("hover");
																				
																			$(".dd_container",this).stop().css("display","none");
																		  });
								   $(".dd_container").hover(function(){
																$(this).parent().stop().removeClass("active").addClass("hover");
																$(this).stop().css("display","block");
																}, 
															function(){
																if($(this).parent().attr("id") == activeitem.attr("id"))
																		activeitem.stop().removeClass("hover").addClass("active");
																else
																		$(this).parent().stop().removeClass("hover");
																$(this).stop().css("display","none");
																});									
							
});
