function dropDown() {
	/*------------------------Config-------------------------*/
	this.navWrapper = "#nav";
	this.hoverClass = "hover";
	/*-----------------------End Config----------------------*/
	$(navWrapper + " > ul li").find("ul li").has("ul").children("a").css({"background" : "url(images/arrow3.gif) no-repeat right center"});
	
	$(navWrapper + " > ul li a").mouseover(function() {																					 
		var parentHeight = $(this).parent().height();		 
		$(this).parent().children("ul").css({"top" : parentHeight+"px" , "left" : "-1px"}).show();  
		$(this).parent().hover(function() {
			$(this).addClass(hoverClass); 	
				
				$(this).parent().find("ul li a").mouseover(function() {																		 
					var parentWidth = $(this).parent().width();																		 
					$(this).parent().children("ul").css({"top" : "-1px" , "left" : parentWidth+"px"}).show();  
					$(this).parent().hover(function() {
						$(this).addClass(hoverClass); 			
						}, function(){  
						$(this).removeClass(hoverClass); 
						$(this).children("ul").hide();
					});  
				});				
			
			}, function(){  
			$(this).removeClass(hoverClass); 
			$(this).children("ul").hide();
		});  
	});	
};
