$().ready(function(){
	$( "a[id^='info_']" ).click(function(){
		var id = (this.id).split("_");
		
		$("div[id^='bxy_']").hide();
		$("div[id^='sxy_']").show();
		$("#sxy_"+id[1]).hide();
		$("#bxy_"+id[1]).show();
	})

	$("#xf").change(function(){
		var id = $("#xf").val();
		if( id == 0 )
		{
			$('#zy_select').html( '<select ><option value="0">请选择</select>' );
			return false;
		}
		xf_ajax( id );
		
	})
});

function xf_ajax( id )
{
	$('#zy_select').html( '读取数据...' );
	$.ajax({
		url:'Ajax_show_zy.php',
		data:'id=' + id,
		type:'POST',
		success:function( res )
		{	
			if( res == 'empty' )
			{
				$('#zy_select').html( '请先添加相关专业...' );
			}
			else
			{
				$('#zy_select').html( res );
				$('#submit').disabled = false;
			}
				
		}
	});
}
