$(function(){

    $("div.dropdown .level_1_container").hover(function(){
		
		$('div.level_2_container',this).css('display', 'block');
		$("div.dropdown .parent_3").hover(function(){
		
			currentId = $(this).attr('id');
			$("div.dropdown ." + currentId).css('display', 'block');
			$("div.dropdown ." + currentId).hover(function(){
				$("div.dropdown ." + currentId).css('display', 'block');
			}, function(){
				$("div.dropdown ." + currentId).css('display', 'none');
			});
			
			
		}, function(){
			
			var currentId = $(this).attr('id');
			$("div.dropdown ." + currentId).css('display', 'none');
		
		});
	
    }, function(){
		
		$('div.level_2_container',this).css('display', 'none');
	
	});
	
});
