
function hood(){

	//应用商城/首页/最近更新/效果
    jQuery("#store_index_zjgx_opt").children().siblings("a").click(function(){
		//去掉其它者的样式
		jQuery("#store_index_zjgx_opt").children().siblings("a").removeClass("sp");
		//改变选中者的样式
		jQuery(this).addClass("sp");
		//获取当前ID
		var id = jQuery(this).text();
		//移去所有的内容
		jQuery("#store_index_zjgx_view").children().siblings("ul").hide();
		//加载指定ID的内容
		jQuery("#store_index_zjgx_view_"+id).show();
	});
}


//init
jQuery().ready(hood);
