/*            $(function() {
				var $menu = $('#ldd_menu');
				var $footermenu = $('div.ft_menue');
				
				
										
				$menu.children('li').each(function(){
					var $this = $(this);
					var $span = $this.children('span');
					$span.data('width',$span.width());
					
					$this.bind('mouseenter',function(){
						$menu.find('.ldd_submenu').stop(true,true).hide();
						$span.stop().animate({'width':'360px'},300,function(){
							$this.find('.ldd_submenu').slideDown(300);
						});
					}).bind('mouseleave',function(){
						$this.find('.ldd_submenu').stop(true,true).hide();
						$span.stop().animate({'width':$span.data('width')+'px'},300);
					});
				});
				
				$footermenu.each(function(){
					var $this = $(this);
					var $p = $this.children('p');
					var $submenu = $this.children('ul');
					var $hight = $submenu.size();
					
					$p.mouseover(function(){
						$submenu.animate({						 
												height: "toggle", opacity: "toggle"},"slow"
												);
					});
				});
            });

            $(function() {
				var $menu = $('#ldd_menu');
				var $footermenu = $('.ft_menue');
				
				
										
				$menu.children('li').each(function(){
					var $this = $(this);
					var $span = $this.children('span');
					$span.data('width',$span.width());
					
					$this.bind('mouseenter',function(){
						$menu.find('.ldd_submenu').stop(true,true).hide();
						$span.stop().animate({'width':'360px'},300,function(){
							$this.find('.ldd_submenu').slideDown(300);
						});
					}).bind('mouseleave',function(){
						$this.find('.ldd_submenu').stop(true,true).hide();
						$span.stop().animate({'width':$span.data('width')+'px'},300);
					});
				});
				
				$footermenu.children('p').each(function(){
					var $this = $(this);
					
					$this.click(function(){
						//var $footersubmenu = $('.ft_submenue');
						//var $footersubmenu = $('.ft_submenue');
						//$("div > ul").slideUp();
						//$footersubmenu.animate({
						$("p > ul").animate({						 
												height: "toggle", opacity: "toggle"},"slow"
												);
					});
				});
            });
*/

          $(function() {
				var $menu = $('#ldd_menu');
										
				$menu.children('li').each(function(){
					var $this = $(this);
					var $span = $this.children('span');
					$span.data('width',$span.width());
					
					$this.bind('mouseenter',function(){
						$menu.find('.ldd_submenu').stop(true,true).hide();
						$span.stop().animate({'width':'360px'},300,function(){
							$this.find('.ldd_submenu').slideDown(300);
						});
					}).bind('mouseleave',function(){
						$this.find('.ldd_submenu').stop(true,true).hide();
						$span.stop().animate({'width':$span.data('width')+'px'},300);
					});
				});
				
            });


//footer manu area
/*function styleSwitch(strID){
	srtStatus=document.getElementById(strID).style.display;
	if(srtStatus=='none'){
		document.getElementById(strID).style.display='';
	}else{
		document.getElementById(strID).style.display='none';
	}
}
*/



