
$(document).ready(function()
		{
				//$('#pgPhoto').html('Loading Package Photo...')
				if(hoid=='')
				{
					var href=window.location.href.split('.');	
					if(href.length>1)
					{
						hoid=href[4];
					}
				}
                $.ajax({
                    type:"POST",
                    url:"HandlerPackagePhoto.aspx",
                    //dataType: "json",//返回json格式的数据
				
                    data:"hoid=" + hoid,
                    success:function(msg){//msg为返回的数据，在这里做数据绑定
                    //alert(msg);
                    $('#pgPhoto').html(msg);
                    }
                });
        }
)

