// JavaScript Document
$(document).ready(function(){
	$('.leftbg').css('opacity','0.4');	
	
	//导航切换
	$active=$('#work .work,#about .about');
	$active.find('ul').show();
	$('.nav > ul > li').hover(function(){
		if($active.index()!=$(this).index()){
		$(this).find('.cn').show();
		$(this).find('.en').hide();
		
		$active.find('ul').stop(false,true).slideUp(500);
		$(this).find('ul').stop(false,true).slideDown(500);
		}
	},function(){
		if($active.index()!=$(this).index()){
		$(this).find('.en').show();
		$(this).find('.cn').hide();

		
		$(this).find('ul').stop(false,true).slideUp(500);
		$active.find('ul').stop(false,true).slideDown(500);
		}
	});
	
	if($(window).height()<600){
		  $('.copyright').hide();
	  }

	$(window).resize(function(){
	  if($(window).height()<600){
		  $('.copyright').hide();
	  }else{
		$('.copyright').show();
	  }
	});


});
