$(function(){
	jQuery("#Navigation>ul> li:last").addClass("last");
	jQuery("#Navigation ul li").each(function(){
		jQuery(this).find("ul li:last").addClass("last");
		var w=0;
		jQuery(this).find("ul li").each(function(){
			w+=jQuery(this).width()+12;				
		});
		jQuery(this).find("ul").width(w);
		jQuery(this).find("ul").hide();
		jQuery(this).hover(function(){
			//jQuery(this).addClass("hover");
			if(jQuery(this).find("ul").length>0)
			{
				jQuery(this).find("ul").css("opacity","0.9");
				jQuery(this).find("ul").slideDown("100");
			}
		},function(){
			//jQuery(this).removeClass("hover");
			jQuery(this).find("ul").slideUp("100");
			jQuery(this).find("ul").css("opacity","0.9");
		})									
	})
	
	$('.fBlock>ul>li>a ').attr('href','javascript:void(0)');
	$('.fBlock>ul>li>a').css({'text-decoration':'none','cursor':'default'})
	
});

