// JQuery
$(document).ready(function() {
	// 切换城市
	$(".toggleCity").hover(function() {
		$(".toggleCity > div").animate({height: 'toggle', opacity: .9},300);
		$(".toggleCity .city").css({color:"#C00"});
	},function() {
		$(".toggleCity > div").animate({height: 'toggle', opacity: 0},300);
		$(".toggleCity .city").css({color:"#999"});
	});

	// 主菜单
	$(".mNav > ul > li[class='sub']").hover(function() {
		$(this).append('<iframe frameborder="0" src="#" style="z-index: 1;position:absolute;left:0;top:28px;width:120px;height:110px;filter:progid:DXImageTransform.Microsoft.Alpha(style=0,opacity=0)"></iframe>')
			.addClass("active").find("ul").show();
	},function() {
		$(this).removeClass("active").find("ul").hide().next("iframe").remove();
	});

	// 导航栏推荐信息 向上间歇滚动
	$(function() {$("#navTj").scrollable({vertical:true,size:1}).circular().autoscroll({interval: 3000});}); 

	// 课程搜索输入框
	$("#kcKeyInput").focus(function() {
		$("#kcKeyInput[value='输入关键词搜索']").val("").addClass("keyInput_selected");
	}).blur(function() {
		$("#kcKeyInput[value='']").val("输入关键词搜索").removeClass("keyInput_selected");
	});
	// 教学中心搜索选项卡
	$(".jiaoxuedian .tab").tabs(".jiaoxuedian > .con", {tabs: 'span'});




// 首页应用

	// 焦点图
	$("#smallPic").tabs("#bigPic > li", {effect: 'fade', event: 'mouseover', rotate: true, tabs: 'li'}).slideshow({autoplay: true, interval:4000});

	// 学校新闻/评论/资讯 选项卡
	$("#topMainNewsTabs").tabs("#topMainNews ul", {event: 'mouseover',tabs: 'li'});

	// 小升初宝典 选项卡
	//$("#jjbdTabs").tabs("#jjbdCon ul", {event: 'mouseover',tabs: 'li'});

	// 精学1对1名师 滚动
	//$("#studentStarBox").scrollable().circular().autoscroll({steps: 1,interval: 3000});

	// 少儿英语教师团队 滚动
	//$("#engTeacher").scrollable().circular().autoscroll({steps: 1,interval: 4000});

	// 中高级英语教师团队 滚动
	//$("#engTeacher2").scrollable().circular().autoscroll({steps: 1,interval: 3000});

	// 少儿英语/中高级英语 选项卡
	$("#engTabs").tabs("#engCenter .engCenterBox", {event: 'mouseover',tabs: 'h2'});

	// 小学数学教师团队 滚动
	//$("#mathTeacher").scrollable().circular().autoscroll({steps: 1,interval: 4000});

	// 小学语文教师团队 滚动
	//$("#chineseTeacher").scrollable().circular().autoscroll({steps: 1,interval: 3000});

	// 初中专区教师团队 滚动
	//$("#czTeacher").scrollable().circular().autoscroll({steps: 1,interval: 3000});

	// 高中专区教师团队 滚动
	//$("#gzTeacher").scrollable().circular().autoscroll({steps: 1,interval: 4000});

	// 产品展示/加盟中心 选项卡
	//$("#productJoin .joinTabs").tabs("#productJoin .joinBox", {event: 'mouseover',tabs: 'li'});

	// 电话表 伸缩
	$("#schoolTel > .mTitle").toggle(function() {
		$(this).next("div").slideDown("fast");
		$(this).attr({title:"点击收起列表"}).children().addClass("down");
	},function() {
		$(this).next("div").slideUp("fast");
		$(this).attr({title:"点击展开列表"}).children().removeClass("down");
	});

});

