   $(document).ready(function(){			
				$(this).delay(1000,function(){
					$('div.m_underline:eq(0)').animate({
					width: "0px",
					opacity: 0
					}, 900 );
				});
				
				$(this).delay(1200,function(){
					$('div.m_underline:eq(1)').animate({
					width: "0px",
					opacity: 0
					}, 900 );
				});
				
				$(this).delay(1400,function(){
					$('div.m_underline:eq(2)').animate({
					width: "0px",
					opacity: 0
					}, 900 );
				});
				
				$(this).delay(1600,function(){
					$('div.m_underline:eq(3)').animate({
					width: "0px",
					opacity: 0
					}, 900 );
				});
				
				$("div#menu ul#m_menu li a").hover(function () {
					$(this).children().stop().animate({opacity: 0}, 100);
					$(this).parent('li').next('li').children('div').stop().animate({width: "146px", opacity: 1}, 400);
				}, 
				function () {
					$(this).children("img").stop().animate({opacity: 1}, 400);
					$(this).parent('li').next('li').children('div').stop().animate({width: "0px", opacity: 0}, 400);
				});
				
				$("div#links").hide();
				$("li#m_links a").toggle(
					function() {
					$("div#links").fadeIn("fast");
					},
					function() {
					$("div#links").fadeOut("fast");
												 });
				
				$('div#links> div').hide();
				$('div#links div#l_production').show();
				$('div#links> h2').click(function() {
					var $nextDiv = $(this).next();
					var $visibleSiblings = $nextDiv.siblings('div:visible');
		 
					if ($visibleSiblings.length ) {
					$visibleSiblings.slideUp('fast', function() {
					$nextDiv.slideToggle('fast');
					});
					} else {
					$nextDiv.slideToggle('fast');
					}
				});
				

        });