/*------------------------------------------------------------------------------------------
site.page.init.first.dir.js
da peng
dp165137419@163.com
------------------------------------------------------------------------------------------*/



(function ($) {
    $(document).ready(function () {
	      $('#gamePage').html(GetGamePageList());
				$('#gamePage').change(function () {
						$('#productPage').html(GetProductPageList($(this).val()));
				});
				$('#goto').click(function () {
				    var pagePath = GetPagePath(3, $('#gamePage').val(), $('#productPage').val());
						window.location.href = pagePath;
				});
		});
})(jQuery);