﻿/*document.oncontextmenu = function() { return false;}; */
$(function(){
	$('.indfaq>dt').mouseover(function(){
		$(this).next('dd').show();
		$(this).addClass('active').siblings('.active').removeClass('active').next('dd').hide();
		return false;
	})
	$('.tab_1 a').each(function(i){
		$(this).mouseover(function(){
			$('.tab_1 a').eq(i).addClass('cur').siblings().removeClass('cur');
			$('.tab_1_show .tab_1_text').eq(i).show().siblings().hide();
			return false;
		}).focus(function(){this.blur();});
	});

	$('.nav>li').each(function(i){
		$(this).mouseover(function(){
				$(this).addClass('show');
			}).mouseout(function(){
				$(this).removeClass("show");
		});
	});
})

/* products */
function ShowDiv(ObjID) {
	for(var i=1;i<6;i++) {
		if(document.getElementById("m0"+i)) {
			document.getElementById("m0"+i).className=(ObjID==i)?"cur":"";
			document.getElementById("c0"+i).className=(ObjID==i)?"":"hidden";
		} else return;
	}
}




