jQuery(document).ready(function(){

	jQuery("ul.menu_j li").dropdown();

});


jQuery.fn.dropdown = function() {
	jQuery(this).hover(function(){
		jQuery(this).addClass("hover");
		//jQuery('> #dir',this).addClass("open");
		jQuery(this).parents()
                          .map(function () { 
									
                                if(this.tagName == 'LI' )
								 {
									// alert(this.tagName);
									 jQuery(this).addClass("open");
									 return;
								}
                              })

		//jQuery(this).parent('a').addClass("open");
		jQuery('ul:first',this).css('display', 'block');
	},function(){
		jQuery(this).removeClass("hover");
		jQuery(this).parents()
                          .map(function () { 
									
                                if(this.tagName == 'LI' )
								 {
									// alert(this.tagName);
									 jQuery(this).removeClass("open");
									 return;
								}
                              })
		jQuery('ul:first',this).css('display', 'none');
	});

}