// JavaScript Document
$(document).ready(function() {
	var home_scro_tle=$("#home_scro_tle_img");
	
	$("#home_scro_1").click(function(){//点击第1个按钮的时候触发的事件
	$(home_scro_tle).attr({src:"img/homepage/scro_tle_1.jpg"});//标题入换成相应
	$("#home_scro_info_11").attr({src: "home_iframe/info_1.html"});//显示相应层
	$("#home_scro_info_22").stop("gotoEnd",true);//隐藏其他层
	$("#home_scro_info_33").stop("gotoEnd",true);
	$("#home_scro_info_44").stop("gotoEnd",true);
	$("#home_scro_info_22").hide();//隐藏其他层
	$("#home_scro_info_33").hide();
	$("#home_scro_info_44").hide();
	$("#home_scro_info_11").animate({width: 'show',opacity: 'show'}, 'slow');//显示相应层
	});
	
	$("#home_scro_2").click(function(){//点击第2个按钮的时候触发的事件
	$(home_scro_tle).attr({src:"img/homepage/scro_tle_2.jpg"});//标题入换成相应
	$("#home_scro_info_22").attr({src: "home_iframe/info_2.html"});//显示相应层
	$("#home_scro_info_11").stop("gotoEnd",true);//隐藏其他层
	$("#home_scro_info_33").stop("gotoEnd",true);
	$("#home_scro_info_44").stop("gotoEnd",true);
	$("#home_scro_info_11").hide();//隐藏其他层
	$("#home_scro_info_33").hide();
	$("#home_scro_info_44").hide();
	$("#home_scro_info_22").animate({width: 'show',opacity: 'show'}, 'slow');//显示相应层
	});
	
	$("#home_scro_3").click(function(){//点击第3个按钮的时候触发的事件
	$(home_scro_tle).attr({src:"img/homepage/scro_tle_3.jpg"});//标题入换成相应
	$("#home_scro_info_33").attr({src: "home_iframe/info_3.html"});//显示相应层
	$("#home_scro_info_22").stop("gotoEnd",true);//隐藏其他层
	$("#home_scro_info_11").stop("gotoEnd",true);
	$("#home_scro_info_44").stop("gotoEnd",true);
	$("#home_scro_info_22").hide();//隐藏其他层
	$("#home_scro_info_11").hide();
	$("#home_scro_info_44").hide();
	$("#home_scro_info_33").animate({width: 'show',opacity: 'show'}, 'slow');//显示相应层
	});
	
	$("#home_scro_4").click(function(){//点击第4个按钮的时候触发的事件
	$(home_scro_tle).attr({src:"img/homepage/scro_tle_4.jpg"});//标题入换成相应
	$("#home_scro_info_44").attr({src: "home_iframe/info_4.html"});//显示相应层
	$("#home_scro_info_22").stop("gotoEnd",true);//隐藏其他层
	$("#home_scro_info_33").stop("gotoEnd",true);
	$("#home_scro_info_11").stop("gotoEnd",true);
	$("#home_scro_info_22").hide();//隐藏其他层
	$("#home_scro_info_33").hide();
	$("#home_scro_info_11").hide();
	$("#home_scro_info_44").animate({width: 'show',opacity: 'show'}, 'slow');//显示相应层
	});
});

