		function cfrom1_submit(obj){
			message_str = "請選擇:\n\n";
			str = "";
			if(obj.xlocation.value == "0")
				str = str + " 地區\n";
			if(obj.xlocation2.value == "0")
				str = str + " 縣市\n";
			if(obj.xlocation3.value == "0")
				str = str + " 鄉鎮市區\n";
			if(str != ""){
				alert(message_str + str);
			}else{
				obj.submit();
			}
		}	
		

	$(document).ready(function(){
		$('.picwrap').cycle({
			fx: 'fade',
			//speed: 1000,
			//delay: 3000 ,
			timeout:6000,
			pause: 1
		});
		$('.newscycle').cycle({
			fx: 'fade',
			timeout:5000,
			pause: 1
		});

		$("#xlocation").change( function() {
		  //alert($("select[name='fCategory']").val())
		  var cid = $(this).val();
		  //alert(cid)
		  /*if(cid!='0')
		  {*/
			  $.ajax({
				  type: "GET",
				  url: "chinese/02_buy/subtype.php",
				  cache: false,
				  data:"cid="+cid,
				  success: function(html){
					$("#xlocation2").html(html);
				  }
				});
		  //}
		});
		$("#xlocation2").change( function() {
		  //alert($("select[name='fCategory']").val())
		  var cid = $(this).val();
		  //alert(cid)
		  /*if(cid!='0')
		  {*/
			  $.ajax({
				  type: "GET",
				  url: "chinese/02_buy/subtype2.php",
				  cache: false,
				  data:"cid="+cid,
				  success: function(html){
					$("#xlocation3").html(html);
				  }
				});
		  //}
		});
	});

