// JavaScript Document
$(document).ready(function(){
						     $(".hasSub1").hover(function(){
													  $(this).find(".sub1").css({"display":"block","overflow":"visible"});
													   },function(){
																	$(this).find(".sub1").hide("fast");
														});
						   
						   $(".hasSub2").hover(function(){														
											$(this).find(".sub2").show("fast");
													   },function(){
											$(this).find(".sub2").hide("fast");
														});
						   $(".sideBar dl dd").click(function(){
															 	$(this).find("ul").show("dd").parent("dd").siblings().find("ul").hide();														 
															   })
						   
						   
						   })
	 
