// JavaScript Document

jQuery(function($){
	/*
	*   清除点击时的虚线框
	*/
	$('a,img,button,input[type="button"],input[type="submit"],input[type="image"],input[type="checkbox"],input[type="reset"]').bind('focus',function(){
		if(this.blur){
			this.blur();
		}
	});
	
	
	/*
	鼠标滑过显示层
	*/
	$('.popupBox').click(function(){
			$(this).css({'display':'block','position':'relative' })
			$('.type',this).show()
		}).mouseout(function(){
			$('.type',this).hide()
	})
	
	/*
	滑过显示隐藏
	
	*/
		$(".brandTab").switchTab({
		defaultIndex:0,
		titOnClassName: "hover",
		titCell:"ol li",
		mainCell: ".comCont",
		delayTime: 0,
		interTime: 0,
		trigger: "mouseover",
		effect: "",
		omitLinks: false,
		debug: ""
	});
		
	/*
	点击显示隐藏
	
	*/
	$(".brandTab1").switchTab({
		defaultIndex:0,
		titOnClassName: "hover",
		titCell:"ol li",
		mainCell: ".comCont1",
		delayTime: 0,
		interTime: 0,
		trigger: "click",
		effect: "",
		omitLinks: false,
		debug: ""
	});	
	/*
	点击显示隐藏
	
	*/
	$(".brandTab2").switchTab({
		defaultIndex:0,
		titOnClassName: "hover",
		titCell:"ol li",
		mainCell: ".comCont2",
		delayTime: 0,
		interTime: 0,
		trigger: "click",
		effect: "",
		omitLinks: false,
		debug: ""
	});
	
	
});




