// <--

    //lightbox
    $(function() {
        $('.caseimg a').lightBox();
		
    });

    //下拉菜单
    $(function(){
        //去线
        $('#menu li:eq(1)').css({background:'none'});

        //左边下拉菜单
        $('.leftmenu li').hover(
            function(){
                $(this).children('ul').stop(true, true).show();
				
            },
            function(){
                $(this).children('ul').stop(true, true).hide();
            }
        );
		
		//头部下拉菜单
		$(function(){
			$('#menu > li').hover(function(){
				$(this).children('ul').stop(true, true).slideDown();
				$(this).find("a:first").addClass("now");
				
			},
			function(){
				$(this).children('ul').stop(true, true).slideUp();
				$(this).find("a:first").removeClass("now");
				
				
			}			
			);		   
		});
		//右下角弹出层
		
		$("#cthmb").floatdiv({right:"0px",bottom:"0px"});
		$("#ctjian").click(function(){
			$("#cthmb").height(35);				
		});
		
		$("#ctjia").click(function(){
			$("#cthmb").stop(true, true).hide("normal");				
		});
		$("#ctils").toggle(function(){
			$("#cthmb").height(35);							 
		},
		function(){
			$("#cthmb").height(245);	
		}
		);
    });
	
	function sx(){$("#cthmb").height(35);}
	setTimeout("sx()",	10000);
//-->
