	navigation = {
		isOpen : false,	
		start : function(){
			var obj = this;
			$("#menu li").each(function(){
				if($(this).find('.sub').length > 0)
				{
					obj.init($(this))
				}
			});
		},
		init : function(item){	
			$(item).hover(function(){
				$("#menu ul li .sub").stop(true,true).css({
					display : 'none',
					opacity : '0'
				});
				
				$("#menu ul li .sub li").stop(true,true).css({
					opacity : 0,
					marginLeft : '-128px'
				});
				$(this).find('.sub').find('li').each(function(i){
					$(this).css({
							opacity : 0,
							marginLeft : '-128px'
					});
					
					setTimeout((function(dom){
						return function(){
							$(dom).animate({
								opacity : 1,
								marginLeft : '0px'
							},150);
									
						}
					})($(this)),i*150);
					
				});
				$(this).find('.sub').css('display','block');
				$(this).find('.sub').animate({
						opacity : 1
				},400);
				
						
			},function(){
				$(this).find('.sub').stop(true,true).hide();
			});
		}
		
	};
