var dropBox={switchShow:0};
dropBox.show=function(type){
	if(type==1){
		dropBox.switchShow=1;
	}
	document.getElementById('nav_movietype').style.display='block';
}

dropBox.navhide=function(){
	setTimeout(function(){
		if (dropBox.switchShow==0){
			document.getElementById('nav_movietype').style.display='none';
		}},300);
}

dropBox.hide=function(){
	dropBox.switchShow=0;
	document.getElementById('nav_movietype').style.display='none';
}